removes a specific expression at the start of a string
None
None
If the string specified as the first argument starts with the expression specified as the second argument, the matching prefix of the string is removed and the resulting string is returned.
Otherwise the string is returned without alteration.
std::without_suffix | removes a specific expression at the end of a string |
std::has_prefix | returns *true* if the second argument is a prefix of the first argument |
std::has_suffix | returns *true* if the second argument is a suffix of the first argument |
std::behind | returns the substring behind the specified expression |
std::truncate_from | returns the substring before the specified expression |
std_types::string | returns the string without the specified prefix |