native
parse
Syntax
native parse(const text[], ... );
Description
Gets parameters from text.
Parameters
| text | String to parse. |
|---|---|
| ... | Variable number of format parameters. |
Note
Example: to split text: "^"This is^" the best year",
call function like this: parse(text,arg1,len1,arg2,len2,arg3,len3,arg4,len4)
and you will get: "This is", "the", "best", "year"
Function returns number of parsed parameters.
Return
Number of parsed parameters.