|
StringParserIndicesOfToken(String, String, Int32, Boolean) Method
|
Returns an array of indices where the token string was found
Namespace: GSF.ParsingAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.207-beta+1781b796b2aa7a54013a031eb432fe4ccee31867
Syntax public static int[] IndicesOfToken(
string inString,
string token,
int startIndex = 0,
bool matchCase = true
)
public:
static array<int>^ IndicesOfToken(
String^ inString,
String^ token,
int startIndex = 0,
bool matchCase = true
)
static member IndicesOfToken :
inString : string *
token : string *
?startIndex : int *
?matchCase : bool
(* Defaults:
let _startIndex = defaultArg startIndex 0
let _matchCase = defaultArg matchCase true
*)
-> int[]
GSF.Parsing.StringParser.IndicesOfToken = function(inString, token, startIndex, matchCase);
View SourceParameters
- inString String
- The string to process
- token String
- The token string sought
- startIndex Int32 (Optional)
- The index from which to begin searching inString
- matchCase Boolean (Optional)
- Set to FALSE for case insensitive search
Return Value
Int32null for no tokens found
See Also