regex match

  1. T

    Match all after 8 or 11 characters

    Hi, I am trying to match and get all words after a 8 or 11 character word, but i am stuck. Form has a field which can have digits or alphanumeric characters. image931×42 16.7 KB I can solve this by using : (?<=\d{9}).* But I can get correct match for below cases : image931×40 16.9 KB...
  2. G

    Regtex to check if space between an opening and closing bracket in a data item

    Hi All, Looking to see what is the Regex to check if there is space between an opening and closing bracket in a data item. ( john) True (john) False
  3. K

    How to use the 'Extract Regex Values' action of Utility - Strings for multiple matches

    I already know how to use regular expressions in order to extract some text in strings but most of the time 1 regular expression can match multiple strings inside the original string but I can't find a solution in order to put all the matches in a collection, in this post I find the reference to...
  4. K

    Wildcards or Regex in Match Type

    Hello! Please help me... I need to select a checkbox in a web page by the attribute "value" which must have this format: "RVCA" & <Current month> <Previous day> & ".DAT". What should I use as a match type? Wildcards? regex? and with what format should I do it? Example if it were today...
  5. K

    Test Regex Match

    I would like to check, if the name of the file contains string. Problem is, that it can be: Abc OR ABC OR abc. Could you help me, how I can create this condition in Regex Pattern? Thank you
Top