mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 04:38:24 +00:00
Add a helper function
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31981 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user