Difference between revisions of "ISXDK:Parsing Data Sequences"
Jump to navigation
Jump to search
(No difference)
|
Revision as of 00:02, 8 September 2005
Contents
Summary
This is a tutorial on how to manually parse data sequences.
Syntax
- int DataParse(const char *ToParse, char *buf, int buflen)
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);