Skip to main content

Matches

Checks if given string matches given values and return matches.

Input

  • Input: It contains the text to be matched
    • Type: System.String
    • Required
  • Pattern: It contains the main text
    • Type: System.String
    • Required
  • Regex Options: It determines whether it matches or not based on the regex conditions. It has a multiple-choice structure.
    • Type: System.String
    • Required

Output

  • Result: It returns the locations where the text matches within the pattern.
    • Type: System.Collections.Generic.IEnumerable<System.Text.RegularExpressions.Match>
    • Required