'Declaration Public Function FindAllByPattern( _ ByVal str As String, _ ByVal options As RegexOptions _ ) As List(Of String)
'Usage Dim instance As Paragraph Dim str As String Dim options As RegexOptions Dim value As List(Of String) value = instance.FindAllByPattern(str, options)
public List<string> FindAllByPattern( string str, RegexOptions options )
Parameters
- str
- The pattern to search for.
- options
- The regular expression options to use.
Return Value
A list of all the unique string values that were found.