ISXDK:Parsing Data Sequences

From Lavish Software Wiki
Jump to navigation Jump to search

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);

See Also