About 3,740,000 results
Open links in new tab
  1. regex - Learning Regular Expressions - Stack Overflow

    Aug 7, 2008 · Regex Syntax Summary How Regexes Work JavaScript Regular Expressions Footnote †: The statement above that . matches any character is a simplification for …

  2. Understanding c++ regex by a simple example - Stack Overflow

    The target sequence is either s or the character sequence between first and last, depending on the version used. So regex_search will search for anything in the input string that matches the …

  3. regex - How to use regular expressions in C - Stack Overflow

    Jul 5, 2009 · How do I use regular expressions in ANSI C? man regex.h does not provide that much help.

  4. How can I provide an OR operator in regular expressions?

    Nov 28, 2012 · While the alternation operator is the answer to "what is the alternation operator in regex", there are many more nuances in using it inside regular expressions.

  5. How do I use a regex in a shell script? - Stack Overflow

    Mar 10, 2016 · Using Bash's own regex-matching operator, =~, is a faster alternative in this case, given that you're only matching a single value already stored in a variable:

  6. c# - A beginner's guide to interpreting Regex? - Stack Overflow

    Dec 31, 2012 · Once you have the very basic idea about regex (it's full of resources over there) I recommend you to use Expresso for creating your regular expressions. Expresso editor is …

  7. javascript - RegExp in TypeScript - Stack Overflow

    May 20, 2013 · To test your regex you have to use the .test() method, not passing the string you want to test inside the declaration of your RegExp! Why test + ""? Because alert() in TS …

  8. What is a word boundary in regex? - Stack Overflow

    A word boundary, in most regex dialects, is a position between \w and \W (non-word char), or at the beginning or end of a string if it begins or ends (respectively) with a word character ([0-9A …

  9. How do I extract a string using a regex in a shell script?

    Feb 12, 2023 · How do I extract a string using a regex in a shell script? Asked 12 years, 1 month ago Modified 2 years, 10 months ago Viewed 195k times

  10. regex - Form validation regular expressions using javascript - Stack ...

    Apr 3, 2017 · Hello How can i add regular expressions in to my form validation i have done really basic form validation below and would just like to add regular expressions to increae security …