|
StringParserIndexOfMatchingCloseToken(String, String, String, Int32, Boolean) Method
|
Looks to the RIGHT for the first open token and returns the matching close token
Namespace: GSF.ParsingAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.207-beta+1781b796b2aa7a54013a031eb432fe4ccee31867
Syntax public static int IndexOfMatchingCloseToken(
string inString,
string openToken,
string closeToken,
int startIndex = 0,
bool matchCase = true
)
Public Shared Function IndexOfMatchingCloseToken (
inString As String,
openToken As String,
closeToken As String,
Optional startIndex As Integer = 0,
Optional matchCase As Boolean = true
) As Integer
public:
static int IndexOfMatchingCloseToken(
String^ inString,
String^ openToken,
String^ closeToken,
int startIndex = 0,
bool matchCase = true
)
static member IndexOfMatchingCloseToken :
inString : string *
openToken : string *
closeToken : string *
?startIndex : int *
?matchCase : bool
(* Defaults:
let _startIndex = defaultArg startIndex 0
let _matchCase = defaultArg matchCase true
*)
-> int
GSF.Parsing.StringParser.IndexOfMatchingCloseToken = function(inString, openToken, closeToken, startIndex, matchCase);
View SourceParameters
- inString String
- The string to process
- openToken String
- closeToken String
- startIndex Int32 (Optional)
- The index from with to begin processing inString
- matchCase Boolean (Optional)
- Set to FALSE for case insensitive search
Return Value
Int32See Also