[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Parses a string to find placeholders of format ${placeholder}.
Example: "My ${thing} is ${color}"
The example above parses into 4 fragements: a text fragment of value "My ",
a parameter fragment "thing", a text fragement " is " and a parameter
fragment "color".
Namespace: net.esper.util
Assembly:
NEsper (in NEsper.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Shared Function ParsePlaceholder ( _
parseString As String _
) As IList(Of Fragment) |
Parameters
- parseString
- System.String
is the string to parse
Return Value
list of fragements that can be either text fragments or placeholder fragments