Strings
See also
- StringFunctions (String Manipulation Class)
StringFunctionsStringFunctions.len()StringFunctions.substr()StringFunctions.head()StringFunctions.tail()StringFunctions.right()StringFunctions.left()StringFunctions.is_name()StringFunctions.alias()StringFunctions.alias_list()StringFunctions.references()StringFunctions.is_point_process()StringFunctions.is_artificial()
- String Parsing (sscanf)
- sprint()
- Syntax:
sprint(strdef, "format", args)- Description:
Prints to a string. See
printf()for the description of the format.
- strcmp()
- Syntax:
x = strcmp("string1", "string2")- Description:
return negative, 0, or positive value depending on how the strings compare lexicographically. 0 means they are identical.