'Declaration Public Overloads Function FindAll( _ ByVal str As String, _ ByVal options As RegexOptions _ ) As List(Of Integer)
'Usage Dim instance As Paragraph Dim str As String Dim options As RegexOptions Dim value As List(Of Integer) value = instance.FindAll(str, options)
public List<int> FindAll( string str, RegexOptions options )
Parameters
- str
- The value to search for.
- options
- A value representing the regular expression options to use.
Return Value
A list of indexes that match the search conditions.