scanStringScan string |
This information is part of the Modelica Standard Library maintained by the Modelica Association.
(nextIndex, string2) = scanString(string, startIndex=1);
Starts scanning of "string" at position "startIndex". First skips white space and scans afterwards a string according to the Modelica grammar, i.e., a string enclosed in double quotes.
If successful, the function returns nextIndex = index of character directly after the found string, as well as the string value in the second output argument.
If not successful, on return nextIndex = startIndex and the second output argument is an empty string.
string |
Type: String |
---|---|
startIndex |
Default Value: 1 Type: Integer Description: Index where scanning starts |
nextIndex |
Type: Integer Description: Index after the found token (success=true) or index at which scanning failed (success=false) |
---|---|
string2 |
Type: String Description: Value of String token |