diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-05-01 19:02:09 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-05-01 19:02:09 +0200 |
commit | d55416a649346e1d1d40c03284d5bd6f6c0a6384 (patch) | |
tree | 22c8ab292dbdb1af853efb6725e681292750b642 /source/StringUtils.h | |
parent | FastNBT: Added cFastNBTTag::GetName() (diff) | |
download | cuberite-d55416a649346e1d1d40c03284d5bd6f6c0a6384.tar cuberite-d55416a649346e1d1d40c03284d5bd6f6c0a6384.tar.gz cuberite-d55416a649346e1d1d40c03284d5bd6f6c0a6384.tar.bz2 cuberite-d55416a649346e1d1d40c03284d5bd6f6c0a6384.tar.lz cuberite-d55416a649346e1d1d40c03284d5bd6f6c0a6384.tar.xz cuberite-d55416a649346e1d1d40c03284d5bd6f6c0a6384.tar.zst cuberite-d55416a649346e1d1d40c03284d5bd6f6c0a6384.zip |
Diffstat (limited to 'source/StringUtils.h')
-rw-r--r-- | source/StringUtils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/StringUtils.h b/source/StringUtils.h index 06bf77035..995ecab1f 100644 --- a/source/StringUtils.h +++ b/source/StringUtils.h @@ -33,10 +33,10 @@ extern AString Printf(const char * format, ...); /// Add the formatted string to the existing data in the string extern AString & AppendPrintf (AString & str, const char * format, ...); -/// Split the string at delimiters, return as a stringvector +/// Split the string at any of the listed delimiters, return as a stringvector extern AStringVector StringSplit(const AString & str, const AString & delim); -/// Split the string at delimiters and trim each value, return as a stringvector +/// Split the string at any of the listed delimiters and trim each value, return as a stringvector extern AStringVector StringSplitAndTrim(const AString & str, const AString & delim); /// Trime whitespace at both ends of the string |