-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTokens.cpp
70 lines (57 loc) · 1.48 KB
/
Tokens.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#include "defs.h"
#include <spark_wiring_string.h>
#include <string.h>
#include "Tokens.h"
using namespace CommandEngine;
String Tokens::iterator::mValueReturn;
Tokens & Tokens::Tokenize(Tokens & tk, String txt, bool doQuotes, const char * seperators )
{
bool inQuotes = false;
int start = 0;
int nbrSeperators = strlen(seperators);
tk.erase();
// remove the trailing and leading spaces
txt.trim();
// Special case of single character
if( txt.length() == 1 ) {
tk.add(txt);
tk.makeReadyForUser();
return tk;
}
for( int index = 0; index < txt.length(); ++index )
{
if( doQuotes && txt.charAt(index) == '\"' )
{
if( inQuotes == true ) {
if( index - start > 0) // Check for the case of ""
tk.add( txt.substring( start, index ) ); // Do not include the quotes into the text stream
inQuotes = false;
start = index + 1;
continue;
}
else {
inQuotes = true;
start = index + 1; // Do not include the quotes into the stream
}
}
if( !inQuotes )
{
for( int i = 0; i < nbrSeperators; ++i )
{
if(txt.charAt(index) == seperators[i] )
{ //Found a seperator character
if( index - start > 0 ) // Check for ' '
tk.add( txt.substring(start, index) ); // Do not include the seperator character
start = index + 1;
break; //leave the seperator loop
}
}
}
}
// Need to add the very last argument to the list
if( start < txt.length() ) {
tk.add( txt.substring(start) );
}
tk.makeReadyForUser();
return tk;
}