diff options
| author | Chris Lattner <sabre@nondot.org> | 2006-11-28 22:32:35 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2006-11-28 22:32:35 +0000 |
| commit | 228bcd3802906488c45f1cbc4c92755c034ab533 (patch) | |
| tree | f6e3e78e8d3151175c27e80d9289047e52e25d29 | |
| parent | f52ae7ec72e77d7ca346012cbe566e3ae1d54f8f (diff) | |
| download | bcm5719-llvm-228bcd3802906488c45f1cbc4c92755c034ab533.tar.gz bcm5719-llvm-228bcd3802906488c45f1cbc4c92755c034ab533.zip | |
Add a helper function
llvm-svn: 31981
| -rw-r--r-- | llvm/include/llvm/ADT/StringExtras.h | 7 | ||||
| -rw-r--r-- | llvm/lib/Support/StringExtras.cpp | 15 |
2 files changed, 22 insertions, 0 deletions
diff --git a/llvm/include/llvm/ADT/StringExtras.h b/llvm/include/llvm/ADT/StringExtras.h index 16132cd8807..f0788a1b114 100644 --- a/llvm/include/llvm/ADT/StringExtras.h +++ b/llvm/include/llvm/ADT/StringExtras.h @@ -18,6 +18,7 @@ #include <cctype> #include <cstdio> #include <string> +#include <vector> namespace llvm { @@ -129,6 +130,12 @@ static inline bool StringsEqualNoCase(const std::string &LHS, std::string getToken(std::string &Source, const char *Delimiters = " \t\n\v\f\r"); +/// SplitString - Split up the specified string according to the specified +/// delimiters, appending the result fragments to the output list. +void SplitString(const std::string &Source, + std::vector<std::string> &OutFragments, + const char *Delimiters = " \t\n\v\f\r"); + /// UnescapeString - Modify the argument string, turning two character sequences /// like '\\' 'n' into '\n'. This handles: \e \a \b \f \n \r \t \v \' \\ and /// \num (where num is a 1-3 byte octal value). diff --git a/llvm/lib/Support/StringExtras.cpp b/llvm/lib/Support/StringExtras.cpp index 8ce371535b6..2ce234970a9 100644 --- a/llvm/lib/Support/StringExtras.cpp +++ b/llvm/lib/Support/StringExtras.cpp @@ -42,6 +42,21 @@ std::string llvm::getToken(std::string &Source, const char *Delimiters) { return Result; } +/// SplitString - Split up the specified string according to the specified +/// delimiters, appending the result fragments to the output list. +void llvm::SplitString(const std::string &Source, + std::vector<std::string> &OutFragments, + const char *Delimiters) { + std::string S = Source; + + std::string S2 = getToken(S, Delimiters); + while (!S2.empty()) { + OutFragments.push_back(S2); + S2 = getToken(S, Delimiters); + } +} + + /// UnescapeString - Modify the argument string, turning two character sequences /// like '\\' 'n' into '\n'. This handles: \e \a \b \f \n \r \t \v \' \\ and |

