About 221,000 results
Open links in new tab
  1. how to add tab character into test string section of regex101.com

    Feb 18, 2023 · I am using regex101.com to learn regex. There will be cases where I want to insert a Tab character within the TEST STRING field of regex101.com. However, when I have the TEST STRING …

  2. Regular expression works on regex101.com, but not on prod

    Sep 22, 2016 · If you test at regex101.com, please check the "Code Generator" page. - You used re.match that only searches for a match at the start of the string, use re.search: Regex works fine on …

  3. Regex works on regex101, but not in powershell... why?

    Aug 18, 2022 · ^ only matches at the start of individual lines if the MultiLine regex option is in effect, which you can activate using inline syntax with (?m) - note that, unlike PowerShell, regex101.com …

  4. regex - regexr.com vs regex101.com - Stack Overflow

    May 3, 2020 · Given this string: z; hh ;d; ; ; ; 12;b ; bb;b ;;; ;; And this expression: ^(?:;+)\R* I get 2 different results in regex101.com and regexr.com. The difference being that regex101.com has an …

  5. Python regex vs Regex101 - Stack Overflow

    Apr 19, 2017 · Python regex vs Regex101 Asked 8 years, 7 months ago Modified 5 years, 8 months ago Viewed 2k times

  6. My regex works on regex101 but doesn't work in python?

    Dec 15, 2016 · My regex works on regex101 but doesn't work in python? [duplicate] Asked 8 years, 11 months ago Modified 5 years, 9 months ago Viewed 9k times

  7. My regex isn't working but works in regex builder and regex101

    Oct 20, 2021 · My regex is working in regex builder and regex101 but it’s not returning any values in my sequence. it’s linebreak matter. regex101 and regex builder handles linebreak as LF (\n).

  8. regex101 - match all occurrences of a string only in the first line ...

    May 17, 2023 · regex101 - match all occurrences of a string only in the first line where it is found Asked 2 years, 6 months ago Modified 2 years, 6 months ago Viewed 2k times

  9. What are delimiters for in Regular Expressions? - Stack Overflow

    Sep 22, 2023 · Regex101 provides a selection of delimiters for the flavor you choose because it wants to give you a representation of how you'd write the regex in the actual programming environment for …

  10. javascript - Regex101: Check if a floating point number (e.g. 3.14159 ...

    Oct 3, 2021 · Regex101: Check if a floating point number (e.g. 3.14159) is in a valid format. (Question 11) Asked 4 years, 1 month ago Modified 4 years, 1 month ago Viewed 881 times