Libs/Utils/StringUtils.h
Namespaces
| Name | 
|---|
| shapeworks  User usage reporting (telemetry)  | 
Classes
| Name | |
|---|---|
| class | shapeworks::StringUtils  String utility functions.  | 
Source code
#pragma once
#include <string>
#include <vector>
namespace shapeworks {
class StringUtils {
 public:
  static std::string removeExtension(std::string const& filename);
  static std::string getPath(std::string const& filename);
  static std::string getFilename(std::string const& pathname);
  static std::string getBaseFilenameWithoutExtension(std::string const& pathname);
  static std::string toLower(std::string s);
  static bool hasSuffix(std::string const& filename, std::string const& suffix);
  static std::vector<std::string> getFileNamesFromPaths(const std::vector<std::string>& paths);
  static std::string getLowerExtension(std::string const& filename);
  // safely convert a const char* to string, allowing for nullptr
  static std::string safeString(const char* s) { return s == nullptr ? std::string() : s; }
  static std::string replace_string(std::string str, const std::string& search, const std::string& replace);
  static std::string join(const std::vector<std::string>& strings, const std::string& delimiter);
};
}  // namespace shapeworks
Updated on 2024-03-17 at 12:58:44 -0600