remove underscores from a string
| 188 | |
| 189 | /// remove underscores from a string |
| 190 | inline std::string remove_underscore(std::string str) { |
| 191 | str.erase(std::remove(std::begin(str), std::end(str), '_'), std::end(str)); |
| 192 | return str; |
| 193 | } |
| 194 | |
| 195 | /// @brief get valid group separators _' + local separator if different |
| 196 | /// @return a string containing the group separators |
no outgoing calls
no test coverage detected