ComponentOne FlexReport for WinForms
FindTextInstances Method

C1.Win.C1Document.4 Assembly > C1.Win.C1Document Namespace > Utils Class : FindTextInstances Method
The text to search for.
The string to search.
Index in "where" to start search at.
Length of substring to search in.
Max number of instances to find.
Search direction.
Ignore case.
Whole word search.
Finds instances of text in a string.
Syntax
'Declaration
 
Public Shared Function FindTextInstances( _
   ByVal what As System.String, _
   ByVal where As System.String, _
   ByVal fromIdx As System.Integer, _
   ByVal length As System.Integer, _
   ByVal maxCount As System.Integer, _
   ByVal forward As System.Boolean, _
   ByVal matchCase As System.Boolean, _
   ByVal word As System.Boolean _
) As System.Collections.Generic.IList(Of Integer)
public static System.Collections.Generic.IList<int> FindTextInstances( 
   System.string what,
   System.string where,
   System.int fromIdx,
   System.int length,
   System.int maxCount,
   System.bool forward,
   System.bool matchCase,
   System.bool word
)

Parameters

what
The text to search for.
where
The string to search.
fromIdx
Index in "where" to start search at.
length
Length of substring to search in.
maxCount
Max number of instances to find.
forward
Search direction.
matchCase
Ignore case.
word
Whole word search.

Return Value

Array of indexes into "where" to the found instances.
See Also

Reference

Utils Class
Utils Members