StringParserIndexOfMatchingCloseToken(String, Char, Char, Int32, Boolean) Method

Looks to the RIGHT for the first open token and returns the matching close token

Definition

Namespace: Gemstone.IO.Parsing
Assembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.128 -- Release Build+d050cfc5563c89a1188cc3c6b2d417530856f490
public static int IndexOfMatchingCloseToken(
	string inString,
	char openToken,
	char closeToken,
	int startIndex = 0,
	bool matchCase = true
)

Parameters

inString  String
The string to process
openToken  Char

[Missing <param name="openToken"/> documentation for "M:Gemstone.IO.Parsing.StringParser.IndexOfMatchingCloseToken(System.String,System.Char,System.Char,System.Int32,System.Boolean)"]

closeToken  Char

[Missing <param name="closeToken"/> documentation for "M:Gemstone.IO.Parsing.StringParser.IndexOfMatchingCloseToken(System.String,System.Char,System.Char,System.Int32,System.Boolean)"]

startIndex  Int32  (Optional)
The index from with to begin processing inString
matchCase  Boolean  (Optional)
Set to FALSE for case insensitive search

Return Value

Int32

[Missing <returns> documentation for "M:Gemstone.IO.Parsing.StringParser.IndexOfMatchingCloseToken(System.String,System.Char,System.Char,System.Int32,System.Boolean)"]

See Also