blob: e73c6e38e2f41146209b290d88326fce25a22d9e [file] [log] [blame]
Daniel Dunbare6551282009-09-16 22:38:48 +00001//===-- StringRef.cpp - Lightweight String References ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "llvm/ADT/StringRef.h"
John McCall1e7ad392010-02-28 09:55:58 +000011#include "llvm/ADT/APInt.h"
Ted Kremenek13302ec2010-11-07 06:09:02 +000012#include "llvm/ADT/OwningPtr.h"
Benjamin Kramer250eb002010-08-23 18:16:08 +000013#include <bitset>
Douglas Gregorad6b6da2010-01-07 00:51:54 +000014
Daniel Dunbare6551282009-09-16 22:38:48 +000015using namespace llvm;
16
Daniel Dunbar77696be2009-09-22 03:34:40 +000017// MSVC emits references to this into the translation units which reference it.
18#ifndef _MSC_VER
Daniel Dunbare6551282009-09-16 22:38:48 +000019const size_t StringRef::npos;
Daniel Dunbar77696be2009-09-22 03:34:40 +000020#endif
Chris Lattnercea14382009-09-19 19:47:14 +000021
Benjamin Kramer05872ea2009-11-12 20:36:59 +000022static char ascii_tolower(char x) {
23 if (x >= 'A' && x <= 'Z')
24 return x - 'A' + 'a';
25 return x;
26}
27
Daniel Dunbar589fbb12011-11-06 18:04:43 +000028static char ascii_toupper(char x) {
29 if (x >= 'a' && x <= 'z')
30 return x - 'a' + 'A';
31 return x;
32}
33
Jakob Stoklund Olesen160a3bf2010-05-26 21:47:28 +000034static bool ascii_isdigit(char x) {
35 return x >= '0' && x <= '9';
36}
37
Benjamin Kramer05872ea2009-11-12 20:36:59 +000038/// compare_lower - Compare strings, ignoring case.
39int StringRef::compare_lower(StringRef RHS) const {
Daniel Dunbar58ce7ac2009-11-19 18:53:18 +000040 for (size_t I = 0, E = min(Length, RHS.Length); I != E; ++I) {
Benjamin Kramer0043e352010-08-26 14:21:08 +000041 unsigned char LHC = ascii_tolower(Data[I]);
42 unsigned char RHC = ascii_tolower(RHS.Data[I]);
Benjamin Kramer05872ea2009-11-12 20:36:59 +000043 if (LHC != RHC)
44 return LHC < RHC ? -1 : 1;
45 }
46
47 if (Length == RHS.Length)
Benjamin Kramer0043e352010-08-26 14:21:08 +000048 return 0;
Benjamin Kramer05872ea2009-11-12 20:36:59 +000049 return Length < RHS.Length ? -1 : 1;
50}
51
Jakob Stoklund Olesen160a3bf2010-05-26 21:47:28 +000052/// compare_numeric - Compare strings, handle embedded numbers.
53int StringRef::compare_numeric(StringRef RHS) const {
54 for (size_t I = 0, E = min(Length, RHS.Length); I != E; ++I) {
Jakob Stoklund Olesen7850dd02011-09-30 17:03:55 +000055 // Check for sequences of digits.
Jakob Stoklund Olesen160a3bf2010-05-26 21:47:28 +000056 if (ascii_isdigit(Data[I]) && ascii_isdigit(RHS.Data[I])) {
Jakob Stoklund Olesen7850dd02011-09-30 17:03:55 +000057 // The longer sequence of numbers is considered larger.
58 // This doesn't really handle prefixed zeros well.
59 size_t J;
60 for (J = I + 1; J != E + 1; ++J) {
Jakob Stoklund Olesen160a3bf2010-05-26 21:47:28 +000061 bool ld = J < Length && ascii_isdigit(Data[J]);
62 bool rd = J < RHS.Length && ascii_isdigit(RHS.Data[J]);
63 if (ld != rd)
64 return rd ? -1 : 1;
65 if (!rd)
66 break;
67 }
Jakob Stoklund Olesen7850dd02011-09-30 17:03:55 +000068 // The two number sequences have the same length (J-I), just memcmp them.
69 if (int Res = compareMemory(Data + I, RHS.Data + I, J - I))
70 return Res < 0 ? -1 : 1;
71 // Identical number sequences, continue search after the numbers.
72 I = J - 1;
73 continue;
Jakob Stoklund Olesen160a3bf2010-05-26 21:47:28 +000074 }
Jakob Stoklund Olesen7850dd02011-09-30 17:03:55 +000075 if (Data[I] != RHS.Data[I])
76 return (unsigned char)Data[I] < (unsigned char)RHS.Data[I] ? -1 : 1;
Jakob Stoklund Olesen160a3bf2010-05-26 21:47:28 +000077 }
78 if (Length == RHS.Length)
Benjamin Kramer0043e352010-08-26 14:21:08 +000079 return 0;
Jakob Stoklund Olesen160a3bf2010-05-26 21:47:28 +000080 return Length < RHS.Length ? -1 : 1;
81}
82
Douglas Gregor7e54d5b2009-12-31 04:24:34 +000083// Compute the edit distance between the two given strings.
Michael J. Spencer326990f2010-11-26 04:16:08 +000084unsigned StringRef::edit_distance(llvm::StringRef Other,
Douglas Gregor5ee568a2010-10-19 22:13:48 +000085 bool AllowReplacements,
86 unsigned MaxEditDistance) {
Douglas Gregor7e54d5b2009-12-31 04:24:34 +000087 // The algorithm implemented below is the "classic"
88 // dynamic-programming algorithm for computing the Levenshtein
89 // distance, which is described here:
90 //
91 // http://en.wikipedia.org/wiki/Levenshtein_distance
92 //
93 // Although the algorithm is typically described using an m x n
94 // array, only two rows are used at a time, so this implemenation
95 // just keeps two separate vectors for those two rows.
Douglas Gregor441c8b42009-12-30 17:23:44 +000096 size_type m = size();
97 size_type n = Other.size();
98
Douglas Gregor2772ea82010-01-07 02:24:06 +000099 const unsigned SmallBufferSize = 64;
100 unsigned SmallBuffer[SmallBufferSize];
Ted Kremenek13302ec2010-11-07 06:09:02 +0000101 llvm::OwningArrayPtr<unsigned> Allocated;
Douglas Gregor2772ea82010-01-07 02:24:06 +0000102 unsigned *previous = SmallBuffer;
Ted Kremenek13302ec2010-11-07 06:09:02 +0000103 if (2*(n + 1) > SmallBufferSize) {
104 previous = new unsigned [2*(n+1)];
105 Allocated.reset(previous);
106 }
Douglas Gregor2772ea82010-01-07 02:24:06 +0000107 unsigned *current = previous + (n + 1);
Michael J. Spencer326990f2010-11-26 04:16:08 +0000108
109 for (unsigned i = 0; i <= n; ++i)
Douglas Gregor441c8b42009-12-30 17:23:44 +0000110 previous[i] = i;
111
Douglas Gregor441c8b42009-12-30 17:23:44 +0000112 for (size_type y = 1; y <= m; ++y) {
Douglas Gregor441c8b42009-12-30 17:23:44 +0000113 current[0] = y;
Douglas Gregor5ee568a2010-10-19 22:13:48 +0000114 unsigned BestThisRow = current[0];
Michael J. Spencer326990f2010-11-26 04:16:08 +0000115
Douglas Gregor441c8b42009-12-30 17:23:44 +0000116 for (size_type x = 1; x <= n; ++x) {
117 if (AllowReplacements) {
118 current[x] = min(previous[x-1] + ((*this)[y-1] == Other[x-1]? 0u:1u),
119 min(current[x-1], previous[x])+1);
120 }
121 else {
122 if ((*this)[y-1] == Other[x-1]) current[x] = previous[x-1];
123 else current[x] = min(current[x-1], previous[x]) + 1;
124 }
Douglas Gregor5ee568a2010-10-19 22:13:48 +0000125 BestThisRow = min(BestThisRow, current[x]);
Douglas Gregor441c8b42009-12-30 17:23:44 +0000126 }
Michael J. Spencer326990f2010-11-26 04:16:08 +0000127
Douglas Gregor5ee568a2010-10-19 22:13:48 +0000128 if (MaxEditDistance && BestThisRow > MaxEditDistance)
129 return MaxEditDistance + 1;
Michael J. Spencer326990f2010-11-26 04:16:08 +0000130
Douglas Gregorad6b6da2010-01-07 00:51:54 +0000131 unsigned *tmp = current;
132 current = previous;
133 previous = tmp;
Douglas Gregor441c8b42009-12-30 17:23:44 +0000134 }
135
Douglas Gregorad6b6da2010-01-07 00:51:54 +0000136 unsigned Result = previous[n];
Douglas Gregorad6b6da2010-01-07 00:51:54 +0000137 return Result;
Douglas Gregor441c8b42009-12-30 17:23:44 +0000138}
139
Chris Lattner05a32c82009-09-20 01:22:16 +0000140//===----------------------------------------------------------------------===//
Daniel Dunbar589fbb12011-11-06 18:04:43 +0000141// String Operations
142//===----------------------------------------------------------------------===//
143
144std::string StringRef::lower() const {
145 std::string Result(size(), char());
146 for (size_type i = 0, e = size(); i != e; ++i) {
147 Result[i] = ascii_tolower(Data[i]);
148 }
149 return Result;
150}
151
152std::string StringRef::upper() const {
153 std::string Result(size(), char());
154 for (size_type i = 0, e = size(); i != e; ++i) {
Benjamin Kramera7b966f2011-11-06 20:36:50 +0000155 Result[i] = ascii_toupper(Data[i]);
Daniel Dunbar589fbb12011-11-06 18:04:43 +0000156 }
157 return Result;
158}
159
160//===----------------------------------------------------------------------===//
Chris Lattner05a32c82009-09-20 01:22:16 +0000161// String Searching
162//===----------------------------------------------------------------------===//
163
164
165/// find - Search for the first string \arg Str in the string.
166///
Chris Lattner7a2bdde2011-04-15 05:18:47 +0000167/// \return - The index of the first occurrence of \arg Str, or npos if not
Chris Lattner05a32c82009-09-20 01:22:16 +0000168/// found.
Daniel Dunbar64066bd2009-11-11 00:28:53 +0000169size_t StringRef::find(StringRef Str, size_t From) const {
Chris Lattner05a32c82009-09-20 01:22:16 +0000170 size_t N = Str.size();
171 if (N > Length)
172 return npos;
Benjamin Kramer6e6a5582011-10-15 10:08:31 +0000173
174 // For short haystacks or unsupported needles fall back to the naive algorithm
175 if (Length < 16 || N > 255 || N == 0) {
176 for (size_t e = Length - N + 1, i = min(From, e); i != e; ++i)
177 if (substr(i, N).equals(Str))
178 return i;
179 return npos;
180 }
181
Benjamin Kramere7a07192011-10-17 20:49:40 +0000182 if (From >= Length)
183 return npos;
184
Benjamin Kramer6e6a5582011-10-15 10:08:31 +0000185 // Build the bad char heuristic table, with uint8_t to reduce cache thrashing.
186 uint8_t BadCharSkip[256];
187 std::memset(BadCharSkip, N, 256);
188 for (unsigned i = 0; i != N-1; ++i)
189 BadCharSkip[(uint8_t)Str[i]] = N-1-i;
190
Benjamin Kramere7a07192011-10-17 20:49:40 +0000191 unsigned Len = Length-From, Pos = From;
Benjamin Kramer6e6a5582011-10-15 10:08:31 +0000192 while (Len >= N) {
193 if (substr(Pos, N).equals(Str)) // See if this is the correct substring.
194 return Pos;
195
196 // Otherwise skip the appropriate number of bytes.
Benjamin Kramere7a07192011-10-17 20:49:40 +0000197 uint8_t Skip = BadCharSkip[(uint8_t)(*this)[Pos+N-1]];
Benjamin Kramer6e6a5582011-10-15 10:08:31 +0000198 Len -= Skip;
199 Pos += Skip;
200 }
201
Chris Lattner05a32c82009-09-20 01:22:16 +0000202 return npos;
203}
204
205/// rfind - Search for the last string \arg Str in the string.
206///
Chris Lattner7a2bdde2011-04-15 05:18:47 +0000207/// \return - The index of the last occurrence of \arg Str, or npos if not
Chris Lattner05a32c82009-09-20 01:22:16 +0000208/// found.
Daniel Dunbar2928c832009-11-06 10:58:06 +0000209size_t StringRef::rfind(StringRef Str) const {
Chris Lattner05a32c82009-09-20 01:22:16 +0000210 size_t N = Str.size();
211 if (N > Length)
212 return npos;
213 for (size_t i = Length - N + 1, e = 0; i != e;) {
214 --i;
215 if (substr(i, N).equals(Str))
216 return i;
217 }
218 return npos;
219}
220
Daniel Dunbar64066bd2009-11-11 00:28:53 +0000221/// find_first_of - Find the first character in the string that is in \arg
222/// Chars, or npos if not found.
223///
Benjamin Kramer250eb002010-08-23 18:16:08 +0000224/// Note: O(size() + Chars.size())
Daniel Dunbar64066bd2009-11-11 00:28:53 +0000225StringRef::size_type StringRef::find_first_of(StringRef Chars,
226 size_t From) const {
Benjamin Kramer250eb002010-08-23 18:16:08 +0000227 std::bitset<1 << CHAR_BIT> CharBits;
228 for (size_type i = 0; i != Chars.size(); ++i)
229 CharBits.set((unsigned char)Chars[i]);
230
Daniel Dunbar58ce7ac2009-11-19 18:53:18 +0000231 for (size_type i = min(From, Length), e = Length; i != e; ++i)
Benjamin Kramer250eb002010-08-23 18:16:08 +0000232 if (CharBits.test((unsigned char)Data[i]))
Chris Lattner05a32c82009-09-20 01:22:16 +0000233 return i;
234 return npos;
235}
236
237/// find_first_not_of - Find the first character in the string that is not
Daniel Dunbar64066bd2009-11-11 00:28:53 +0000238/// \arg C or npos if not found.
239StringRef::size_type StringRef::find_first_not_of(char C, size_t From) const {
Daniel Dunbar58ce7ac2009-11-19 18:53:18 +0000240 for (size_type i = min(From, Length), e = Length; i != e; ++i)
Daniel Dunbar64066bd2009-11-11 00:28:53 +0000241 if (Data[i] != C)
242 return i;
243 return npos;
244}
245
246/// find_first_not_of - Find the first character in the string that is not
247/// in the string \arg Chars, or npos if not found.
248///
Benjamin Kramer250eb002010-08-23 18:16:08 +0000249/// Note: O(size() + Chars.size())
Daniel Dunbar64066bd2009-11-11 00:28:53 +0000250StringRef::size_type StringRef::find_first_not_of(StringRef Chars,
251 size_t From) const {
Benjamin Kramer250eb002010-08-23 18:16:08 +0000252 std::bitset<1 << CHAR_BIT> CharBits;
253 for (size_type i = 0; i != Chars.size(); ++i)
254 CharBits.set((unsigned char)Chars[i]);
255
Daniel Dunbar58ce7ac2009-11-19 18:53:18 +0000256 for (size_type i = min(From, Length), e = Length; i != e; ++i)
Benjamin Kramer250eb002010-08-23 18:16:08 +0000257 if (!CharBits.test((unsigned char)Data[i]))
Chris Lattner05a32c82009-09-20 01:22:16 +0000258 return i;
259 return npos;
260}
261
Michael J. Spencer63c133b2010-11-30 23:27:35 +0000262/// find_last_of - Find the last character in the string that is in \arg C,
263/// or npos if not found.
264///
265/// Note: O(size() + Chars.size())
266StringRef::size_type StringRef::find_last_of(StringRef Chars,
267 size_t From) const {
268 std::bitset<1 << CHAR_BIT> CharBits;
269 for (size_type i = 0; i != Chars.size(); ++i)
270 CharBits.set((unsigned char)Chars[i]);
271
272 for (size_type i = min(From, Length) - 1, e = -1; i != e; --i)
273 if (CharBits.test((unsigned char)Data[i]))
274 return i;
275 return npos;
276}
Chris Lattner05a32c82009-09-20 01:22:16 +0000277
278//===----------------------------------------------------------------------===//
279// Helpful Algorithms
280//===----------------------------------------------------------------------===//
281
282/// count - Return the number of non-overlapped occurrences of \arg Str in
283/// the string.
Daniel Dunbar2928c832009-11-06 10:58:06 +0000284size_t StringRef::count(StringRef Str) const {
Chris Lattner05a32c82009-09-20 01:22:16 +0000285 size_t Count = 0;
286 size_t N = Str.size();
287 if (N > Length)
288 return 0;
289 for (size_t i = 0, e = Length - N + 1; i != e; ++i)
290 if (substr(i, N).equals(Str))
291 ++Count;
292 return Count;
293}
294
John McCall1e7ad392010-02-28 09:55:58 +0000295static unsigned GetAutoSenseRadix(StringRef &Str) {
296 if (Str.startswith("0x")) {
297 Str = Str.substr(2);
298 return 16;
299 } else if (Str.startswith("0b")) {
300 Str = Str.substr(2);
301 return 2;
302 } else if (Str.startswith("0")) {
303 return 8;
304 } else {
305 return 10;
306 }
307}
308
309
Chris Lattner63c6b7d2009-09-19 23:58:48 +0000310/// GetAsUnsignedInteger - Workhorse method that converts a integer character
311/// sequence of radix up to 36 to an unsigned long long value.
Chris Lattnercea14382009-09-19 19:47:14 +0000312static bool GetAsUnsignedInteger(StringRef Str, unsigned Radix,
313 unsigned long long &Result) {
314 // Autosense radix if not specified.
John McCall1e7ad392010-02-28 09:55:58 +0000315 if (Radix == 0)
316 Radix = GetAutoSenseRadix(Str);
Michael J. Spencer326990f2010-11-26 04:16:08 +0000317
Chris Lattnercea14382009-09-19 19:47:14 +0000318 // Empty strings (after the radix autosense) are invalid.
319 if (Str.empty()) return true;
Michael J. Spencer326990f2010-11-26 04:16:08 +0000320
Chris Lattnercea14382009-09-19 19:47:14 +0000321 // Parse all the bytes of the string given this radix. Watch for overflow.
322 Result = 0;
323 while (!Str.empty()) {
324 unsigned CharVal;
325 if (Str[0] >= '0' && Str[0] <= '9')
326 CharVal = Str[0]-'0';
327 else if (Str[0] >= 'a' && Str[0] <= 'z')
328 CharVal = Str[0]-'a'+10;
329 else if (Str[0] >= 'A' && Str[0] <= 'Z')
330 CharVal = Str[0]-'A'+10;
331 else
332 return true;
Michael J. Spencer326990f2010-11-26 04:16:08 +0000333
Chris Lattnercea14382009-09-19 19:47:14 +0000334 // If the parsed value is larger than the integer radix, the string is
335 // invalid.
336 if (CharVal >= Radix)
337 return true;
Michael J. Spencer326990f2010-11-26 04:16:08 +0000338
Chris Lattnercea14382009-09-19 19:47:14 +0000339 // Add in this character.
340 unsigned long long PrevResult = Result;
341 Result = Result*Radix+CharVal;
Michael J. Spencer326990f2010-11-26 04:16:08 +0000342
Chris Lattnercea14382009-09-19 19:47:14 +0000343 // Check for overflow.
344 if (Result < PrevResult)
345 return true;
346
347 Str = Str.substr(1);
348 }
Michael J. Spencer326990f2010-11-26 04:16:08 +0000349
Chris Lattnercea14382009-09-19 19:47:14 +0000350 return false;
351}
352
353bool StringRef::getAsInteger(unsigned Radix, unsigned long long &Result) const {
354 return GetAsUnsignedInteger(*this, Radix, Result);
355}
356
Chris Lattner63c6b7d2009-09-19 23:58:48 +0000357
358bool StringRef::getAsInteger(unsigned Radix, long long &Result) const {
359 unsigned long long ULLVal;
Michael J. Spencer326990f2010-11-26 04:16:08 +0000360
Chris Lattner63c6b7d2009-09-19 23:58:48 +0000361 // Handle positive strings first.
362 if (empty() || front() != '-') {
363 if (GetAsUnsignedInteger(*this, Radix, ULLVal) ||
364 // Check for value so large it overflows a signed value.
365 (long long)ULLVal < 0)
366 return true;
367 Result = ULLVal;
368 return false;
369 }
Michael J. Spencer326990f2010-11-26 04:16:08 +0000370
Chris Lattner63c6b7d2009-09-19 23:58:48 +0000371 // Get the positive part of the value.
372 if (GetAsUnsignedInteger(substr(1), Radix, ULLVal) ||
373 // Reject values so large they'd overflow as negative signed, but allow
374 // "-0". This negates the unsigned so that the negative isn't undefined
375 // on signed overflow.
376 (long long)-ULLVal > 0)
377 return true;
Michael J. Spencer326990f2010-11-26 04:16:08 +0000378
Chris Lattner63c6b7d2009-09-19 23:58:48 +0000379 Result = -ULLVal;
380 return false;
381}
382
383bool StringRef::getAsInteger(unsigned Radix, int &Result) const {
384 long long Val;
385 if (getAsInteger(Radix, Val) ||
386 (int)Val != Val)
387 return true;
388 Result = Val;
389 return false;
390}
391
392bool StringRef::getAsInteger(unsigned Radix, unsigned &Result) const {
393 unsigned long long Val;
394 if (getAsInteger(Radix, Val) ||
395 (unsigned)Val != Val)
396 return true;
397 Result = Val;
398 return false;
Michael J. Spencer326990f2010-11-26 04:16:08 +0000399}
John McCall1e7ad392010-02-28 09:55:58 +0000400
401bool StringRef::getAsInteger(unsigned Radix, APInt &Result) const {
402 StringRef Str = *this;
403
404 // Autosense radix if not specified.
405 if (Radix == 0)
406 Radix = GetAutoSenseRadix(Str);
407
408 assert(Radix > 1 && Radix <= 36);
Michael J. Spencer326990f2010-11-26 04:16:08 +0000409
John McCall1e7ad392010-02-28 09:55:58 +0000410 // Empty strings (after the radix autosense) are invalid.
411 if (Str.empty()) return true;
412
413 // Skip leading zeroes. This can be a significant improvement if
414 // it means we don't need > 64 bits.
415 while (!Str.empty() && Str.front() == '0')
416 Str = Str.substr(1);
417
418 // If it was nothing but zeroes....
419 if (Str.empty()) {
420 Result = APInt(64, 0);
421 return false;
422 }
423
424 // (Over-)estimate the required number of bits.
425 unsigned Log2Radix = 0;
426 while ((1U << Log2Radix) < Radix) Log2Radix++;
427 bool IsPowerOf2Radix = ((1U << Log2Radix) == Radix);
428
429 unsigned BitWidth = Log2Radix * Str.size();
430 if (BitWidth < Result.getBitWidth())
431 BitWidth = Result.getBitWidth(); // don't shrink the result
432 else
Jay Foad40f8f622010-12-07 08:25:19 +0000433 Result = Result.zext(BitWidth);
John McCall1e7ad392010-02-28 09:55:58 +0000434
435 APInt RadixAP, CharAP; // unused unless !IsPowerOf2Radix
436 if (!IsPowerOf2Radix) {
437 // These must have the same bit-width as Result.
438 RadixAP = APInt(BitWidth, Radix);
439 CharAP = APInt(BitWidth, 0);
440 }
441
442 // Parse all the bytes of the string given this radix.
443 Result = 0;
444 while (!Str.empty()) {
445 unsigned CharVal;
446 if (Str[0] >= '0' && Str[0] <= '9')
447 CharVal = Str[0]-'0';
448 else if (Str[0] >= 'a' && Str[0] <= 'z')
449 CharVal = Str[0]-'a'+10;
450 else if (Str[0] >= 'A' && Str[0] <= 'Z')
451 CharVal = Str[0]-'A'+10;
452 else
453 return true;
Michael J. Spencer326990f2010-11-26 04:16:08 +0000454
John McCall1e7ad392010-02-28 09:55:58 +0000455 // If the parsed value is larger than the integer radix, the string is
456 // invalid.
457 if (CharVal >= Radix)
458 return true;
Michael J. Spencer326990f2010-11-26 04:16:08 +0000459
John McCall1e7ad392010-02-28 09:55:58 +0000460 // Add in this character.
461 if (IsPowerOf2Radix) {
462 Result <<= Log2Radix;
463 Result |= CharVal;
464 } else {
465 Result *= RadixAP;
466 CharAP = CharVal;
467 Result += CharAP;
468 }
469
470 Str = Str.substr(1);
471 }
Michael J. Spencer326990f2010-11-26 04:16:08 +0000472
John McCall1e7ad392010-02-28 09:55:58 +0000473 return false;
474}