returns the substring between two expressions
None
If the specified expressions are found within the string the substring between the expressions is returned. Otherwise the empty string is returned.
If nth is specified then the nth occurence of the first expression expr_1 is looked for. If there are not at least n matches for expr_1 within str then the empty string is returned.
std::between | returns the substring between the two specified expressions |
std_types::string/std::before | returns the substring before the specified expression |
std_types::string/std::behind | returns the substring after the specified expression |
std_types::string/std::until | returns the substring until (including) the specified expression |
std_types::string/std::from | returns the substring starting with the specified expression |