EAPConvertTagStringToMap Method (String, Char, Char) |
Convert a tag string (name=value pairs) to a string map mapping name to value.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public static StringMap TagStringToMap(
string tags,
char tagDelim,
char valDelim
)
Public Shared Function TagStringToMap (
tags As String,
tagDelim As Char,
valDelim As Char
) As StringMap
Parameters
- tags
- Type: SystemString
The tag string to convert. - tagDelim
- Type: SystemChar
The delimiter to expect separating name/value pairs. - valDelim
- Type: SystemChar
The delimiter to expect between an individual name and its value.
Return Value
Type:
StringMapA map of names to values if tag string is non-empty. If no tags are found an empty collection is returned.
See Also