ISXDK:Parsing Data Sequences
From Lavish Software Wiki
Contents |
[edit]
Summary
This is a tutorial on how to manually parse data sequences.
[edit]
Syntax
- int DataParse(const char *ToParse, char *buf, int buflen)
[edit]
Examples
- Example code
char jibberish[]="${If[${Time.Hour}*9>100,\"I am a big number\",\"I am a small number\"]}";
char buffer[1024];
pISInterface->DataParse(jibberish,buffer,sizeof(buffer));
printf("Result: %s",buffer);
[edit]
