$splitters
$splitters :
This class holds a sorted array of characters, which are used as stop token.
On every part of the array the given SQL string will be split into single tokens. The array must be sorted by element size, longest first (3 chars -> 2 chars -> 1 char).
getMaxLengthOfSplitter() : integer
Get the maximum length of a split token.
The largest element must be on position 0 of the internal $_splitters array, so the function returns the length of that token. It must be > 0.
The number of characters for the largest split token.
isSplitter(String $token) : boolean
Looks into the internal split token array and compares the given token with the array content. It returns true, if the token will be found, false otherwise.
String | $token | a string, which could be a split token. |
true, if the given string will be a split token, false otherwise