We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd72baf commit e70f305Copy full SHA for e70f305
README.md
@@ -21,7 +21,7 @@ stringtoolbox is available as single-file, header-only library - just drop [stri
21
* Remove trailing whitespace characters: `std::string retVal = stringtoolbox::rtrim("Hello World! ");`
22
* Remove leading and trailing whitespace characters: `std::string retVal = stringtoolbox::trim(" Hello World! ");`
23
* Replace all occurrences of given character: `std::string retVal = stringtoolbox::replaceAll("Hello World.", '.', '!');`
24
-* Split a string using the given delimiter: `std::vector<std::string> retVal = split("Hello,World", ',');`
+* Split a string using the given delimiter: `std::vector<std::string> retVal = stringtoolbox::split("Hello,World", ',');`
25
26
27
## Dependencies
0 commit comments