-
Notifications
You must be signed in to change notification settings - Fork 0
Tokenizing Functions
csamak edited this page Jun 1, 2014
·
1 revision
##Tokenizing Functions
All of the AQL tokenizing functions are mapped to System.String
.
###Example
dv.FacebookUsers.Select(u => u.name.Split(' '));
will generate
for $u in dataset FacebookUsers return word-tokens($u.name)
For an example of each function, view the relevant tests.
###Supported Functions
- word-tokens :
myString.Split(' ')