WOLFRAM SYSTEM MODELER

scanIdentifier

Scan simple identifiers

Wolfram Language

In[1]:=
SystemModel["Modelica.Utilities.Strings.Advanced.scanIdentifier"]
Out[1]:=

Information

This information is part of the Modelica Standard Library maintained by the Modelica Association.

Syntax

(nextIndex, identifier) = scanIdentifier(string, startIndex=1);

Description

Starts scanning of "string" at position "startIndex". First skips white space and scans afterwards a Modelica identifier, i.e., a sequence of characters starting with a letter ("a".."z" or "A".."Z") followed by letters, digits or underscores ("_").

If successful, the function returns nextIndex = index of character directly after the found identifier, as well as the identifier as string in the second output argument.

If not successful, on return nextIndex = startIndex and the second output argument is an empty string.

See also

Strings.Advanced.

Syntax

(nextIndex, identifier) = scanIdentifier(string, startIndex)

Inputs (2)

string

Type: String

startIndex

Default Value: 1

Type: Integer

Description: Index where scanning starts

Outputs (2)

nextIndex

Type: Integer

Description: Index after the found token (success=true) or index at which scanning failed (success=false)

identifier

Type: String

Description: Value of identifier token