supereight
Loading...
Searching...
No Matches
Functions | Variables
se::str_utils Namespace Reference

Functions

bool begins_with (const std::string &s, const std::string &prefix)
 Verify if a string starts with a given prefix.
 
bool ends_with (const std::string &s, const std::string &suffix)
 Verify if a string starts with a given prefix.
 
bool is_int (const std::string &s, const bool accept_negative=true)
 Verify if a string is a integer.
 
bool is_float (const std::string &s, const bool accept_negative=true)
 Verify if a string is a float.
 
void remove_prefix (std::string &s, const std::string &prefix)
 Remove a given prefix from a string.
 
void remove_suffix (std::string &s, const std::string &suffix)
 Remove a given suffix from a string.
 
std::vector< std::string > split_str (const std::string &s, const char delim, const bool ignore_consec=false)
 Split a string into a vector of substrings based on a delimiter.
 
void to_lower (std::string &s)
 Convert a string to all lower case characters.
 
void to_upper (std::string &s)
 Convert a string to all upper case characters.
 
template<typename EigenMatrixT >
std::string eigen_matrix_to_pretty_str (const EigenMatrixT &M, const std::string &M_name="", const int width=default_width)
 Convert a matrix name and Eigen::Matrix value to a standardised string output.
 
template<typename EigenVectorT >
std::string eigen_vector_to_pretty_str (const EigenVectorT &v, const std::string &v_name="", const std::vector< std::string > &e_names={}, const int width=default_width)
 Convert a matrix name and Eigen::Vector value to a standardised string output.
 
template<typename T >
std::string vector_to_pretty_str (const std::vector< T > &v, const std::string &v_name="", const int width=default_width)
 Convert a matrix name and Eigen::Vector value to a standardised string output.
 
template<typename EigenVector3T >
std::string volume_to_pretty_str (const EigenVector3T &vol, const std::string &vol_name="", const int width=default_width)
 Convert a volume name and value to a standardised string output (values seperated by 'x').
 
std::string bool_to_pretty_str (const bool state, const std::string &state_name="", const int width=default_width)
 Convert a bool name and value to a standardised string output.
 
std::string str_to_pretty_str (const std::string &string, const std::string &string_name="", const int width=default_width)
 Convert a string name and value to a standardised string output.
 
template<typename ValueT >
std::string value_to_pretty_str (const ValueT &val, const std::string &val_name="", const std::string &val_unit="", const int width=default_width)
 Convert a matrix name, value and unit to a standardised string output.
 
std::string header_to_pretty_str (const std::string &header_name, const int width=default_width)
 Convert header name to a standardised string output.
 
std::string expand_user (const std::string &path)
 Return the result of expanding a leading ~ in path.
 
std::string resolve_relative_path (const std::string &relative_path, const std::string &base_dir)
 Return the path resulting by resolving relative_path relative to the directory base_dir.
 

Variables

static constexpr int default_width = 33
 

Function Documentation

◆ begins_with()

bool se::str_utils::begins_with ( const std::string &  s,
const std::string &  prefix 
)

Verify if a string starts with a given prefix.

Parameters
[in]sThe full string
[in]prefixThe prefix to be evaluated
Returns
True if the string starts with the given prefix, false otherwise

◆ ends_with()

bool se::str_utils::ends_with ( const std::string &  s,
const std::string &  suffix 
)

Verify if a string starts with a given prefix.

Parameters
[in]sThe full string
[in]suffixThe prefix to be evaluated
Returns
True if the string ends with the given suffix, false otherwise

◆ is_int()

bool se::str_utils::is_int ( const std::string &  s,
const bool  accept_negative = true 
)

Verify if a string is a integer.

Parameters
[in]sThe string to be evaluated
[in]accept_negativeAccept negative integers
Returns
True if the string is an integer, false otherwise

◆ is_float()

bool se::str_utils::is_float ( const std::string &  s,
const bool  accept_negative = true 
)

Verify if a string is a float.

Parameters
[in]sThe string to be evaluated
[in]accept_negativeAccept negative floats
Returns
True if the string is an float, false otherwise

◆ remove_prefix()

void se::str_utils::remove_prefix ( std::string &  s,
const std::string &  prefix 
)

Remove a given prefix from a string.

Parameters
[in,out]sThe full string
[in]prefixThe prefix to be removed from the string

◆ remove_suffix()

void se::str_utils::remove_suffix ( std::string &  s,
const std::string &  suffix 
)

Remove a given suffix from a string.

Parameters
[in,out]sThe full string
[in]suffixThe suffix to be removed from the string

◆ split_str()

std::vector< std::string > se::str_utils::split_str ( const std::string &  s,
const char  delim,
const bool  ignore_consec = false 
)

Split a string into a vector of substrings based on a delimiter.

Parameters
[in]sThe string to split.
[in]delimThe delimiter to use.
[in]ignore_consecTreat consecutive delimiters as a single delimiter.
Returns
The vector containing the substrings.

◆ to_lower()

void se::str_utils::to_lower ( std::string &  s)

Convert a string to all lower case characters.

Parameters
[in,out]sThe string to be converted

◆ to_upper()

void se::str_utils::to_upper ( std::string &  s)

Convert a string to all upper case characters.

Parameters
[in,out]sThe string to be converted

◆ eigen_matrix_to_pretty_str()

template<typename EigenMatrixT >
std::string se::str_utils::eigen_matrix_to_pretty_str ( const EigenMatrixT M,
const std::string &  M_name = "",
const int  width = default_width 
)

Convert a matrix name and Eigen::Matrix value to a standardised string output.

Template Parameters
MatrixT
Parameters
[in]MThe Eigen::Matrix
[in]M_nameThe displayed name of the matrix
[in]widthThe starting position of the value in the string (default = default_width)
Returns
The pretty string

◆ eigen_vector_to_pretty_str()

template<typename EigenVectorT >
std::string se::str_utils::eigen_vector_to_pretty_str ( const EigenVectorT v,
const std::string &  v_name = "",
const std::vector< std::string > &  e_names = {},
const int  width = default_width 
)

Convert a matrix name and Eigen::Vector value to a standardised string output.

Template Parameters
VectorT
Parameters
[in]vThe Eigen::Vector
[in]v_nameThe displayed name of the vector
[in]e_nameThe displayed name of vector elements
[in]widthThe starting position of the value in the string (default = default_width)
Returns
The pretty string

◆ vector_to_pretty_str()

template<typename T >
std::string se::str_utils::vector_to_pretty_str ( const std::vector< T > &  v,
const std::string &  v_name = "",
const int  width = default_width 
)

Convert a matrix name and Eigen::Vector value to a standardised string output.

Template Parameters
Tvector type
Parameters
[in]vThe standard vector
[in]v_nameThe displayed name of the vector
[in]widthThe starting position of the value in the string (default = default_width)
Returns
The pretty string

◆ volume_to_pretty_str()

template<typename EigenVector3T >
std::string se::str_utils::volume_to_pretty_str ( const EigenVector3T vol,
const std::string &  vol_name = "",
const int  width = default_width 
)

Convert a volume name and value to a standardised string output (values seperated by 'x').

Template Parameters
MatrixT
Parameters
[in]volThe volume
[in]vol_nameThe displayed name of the volume
[in]vol_unitThe displayed unit of the volume
[in]widthThe starting position of the value in the string (default = default_width)
Returns
The pretty string

◆ bool_to_pretty_str()

std::string se::str_utils::bool_to_pretty_str ( const bool  state,
const std::string &  state_name = "",
const int  width = default_width 
)

Convert a bool name and value to a standardised string output.

Parameters
[in]stateThe bool
[in]state_nameThe displayed name of the bool
[in]widthThe starting position of the value in the string (default = default_width)
Returns
The pretty string

◆ str_to_pretty_str()

std::string se::str_utils::str_to_pretty_str ( const std::string &  string,
const std::string &  string_name = "",
const int  width = default_width 
)

Convert a string name and value to a standardised string output.

Parameters
[in]stringThe string
[in]string_nameThe displayed name of the string
[in]widthThe starting position of the value in the string (default = default_width)
Returns
The pretty string

◆ value_to_pretty_str()

template<typename ValueT >
std::string se::str_utils::value_to_pretty_str ( const ValueT val,
const std::string &  val_name = "",
const std::string &  val_unit = "",
const int  width = default_width 
)

Convert a matrix name, value and unit to a standardised string output.

Template Parameters
ValueT
Parameters
[in]valThe value
[in]val_nameThe displayed name of the value
[in]val_unitThe displayed unit of the value
[in]widthThe starting position of the value in the string (default = default_width)
Returns
The pretty string

◆ header_to_pretty_str()

std::string se::str_utils::header_to_pretty_str ( const std::string &  header_name,
const int  width = default_width 
)

Convert header name to a standardised string output.

Parameters
[in]header_nameThe header
[in]widthThe starting position of the value in the string (default = default_width)
Returns
The pretty string

◆ expand_user()

std::string se::str_utils::expand_user ( const std::string &  path)

Return the result of expanding a leading ~ in path.

Note
Also expands environment variables since it uses wordexp(3) internally.
Currently only implemented for POSIX systems.

◆ resolve_relative_path()

std::string se::str_utils::resolve_relative_path ( const std::string &  relative_path,
const std::string &  base_dir 
)

Return the path resulting by resolving relative_path relative to the directory base_dir.

If relative_path is an absolute path it is returned as-is.

Variable Documentation

◆ default_width

constexpr int se::str_utils::default_width = 33
staticconstexpr