StringParserIndexOfMatchingCloseToken(String, String, String, 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.150 -- Release Build+64e3b411e1abfbd2d4d8a81e850c3909a0ce8731
public static int IndexOfMatchingCloseToken(
	string inString,
	string openToken,
	string closeToken,
	int startIndex = 0,
	bool matchCase = true
)

Parameters

inString  String
The string to process
openToken  String

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

closeToken  String

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

See Also