About 20,300,000 results
Open links in new tab
  1. 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.

  2. RegEx: Grabbing values between quotation marks - Stack Overflow

    Oct 5, 2008 · The RegEx of accepted answer returns the values including their sourrounding quotation marks: "Foo Bar" and "Another Value" as matches. Here are RegEx which return …

  3. How to use Regular Expressions (Regex) in Microsoft Excel both in …

    How can I use regular expressions in Excel and take advantage of Excel's powerful grid-like setup for data manipulation? In-cell function to return a matched pattern or replaced value in a string. ...

  4. regex - Visual Studio Code Search and Replace with Regular …

    Apr 24, 2017 · Online regex tools are also very helpful to beginners for writing the regex in the first place. Also, use find with your regex to make sure it's actually getting what you want and …

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

    Mar 10, 2016 · 15 the problem is you're trying to use regex features not supported by grep. namely, your \d won't work. use this instead:

  6. regex - What have you used Regular Expressions for? - Stack …

    Mar 4, 2013 · Input validation routines serve as a first line of defense for a Web application. Regular Expressions are a great and robust way to validate input. If you make unfounded …

  7. linux - How to use regex with find command? - Stack Overflow

    Jul 27, 2011 · The -regex find expression matches the whole name, including the relative path from the current directory. For find . this always starts with ./, then any directories. Also, these …

  8. regex - how to use a regular expression to extract json fields?

    Jan 16, 2013 · Beginner RegExp question. I have lines of JSON in a textfile, each with slightly different Fields, but there are 3 fields I want to extract for each line if it has it, ignoring …

  9. How to search filenames by regex with "find" - Stack Overflow

    Jan 21, 2022 · What you want is -regex To use intervals as you intend, you need to tell find to use Extended Regular Expressions via the -regextype posix-extended flag You need to escape out …

  10. regex - To use or not to use regular expressions? - Stack Overflow

    May 23, 2017 · 2 Without meaning to be circular or obtuse, you should use regular expressions when you have a string which contains information structured in a regular language, and you …