About 173,000 results
Open links in new tab
  1. Syntax for Regular Expressions - Google Workspace Admin Help

    To create a regular expression, you must use specific syntax—that is, special characters and construction rules. For example, the following is a simple regular expression that matches any 10 …

  2. Regular Expression with wildcards to match any character

    Jan 2, 1999 · Parentheses in regular expressions define groups, which is why you need to escape the parentheses to match the literal characters. So to modify the groups just remove all of the unescaped …

  3. How to set rules for your form - Google Docs Editors Help

    Regular expression: To require text answers to match certain formulas that you choose, select Regular expression. Then select one of the options in the drop down menu (Contains, Doesn’t contain, …

  4. regex - Regular expressions in swift - Stack Overflow

    May 18, 2019 · Does a string match a pattern? Swift extract regex matches How can I use String slicing subscripts in Swift 4? How to use regex with Swift? Swift 3 - How do I extract captured groups in …

  5. REGEXEXTRACT - Google Docs Editors Help

    REGEXEXTRACT Extracts the first matching substrings according to a regular expression. Sample Usage =REGEXEXTRACT("My favorite number is 241, but my friend's is 17", "\d+") Tip: …

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

    matches the regular expression rgx (the pattern). 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 …

  7. Examples of regular expressions - Google Workspace Admin Help

    Examples of regular expressions The following examples illustrate the use and construction of simple regular expressions. Each example includes the type of text to match, one or more regular …

  8. C# Regex to match a string that doesn't contain a certain string?

    Aug 23, 2009 · Because sometimes your regex is in config and you can't change the code. Or because you need it as a subexpression of another more complex regex. Or any one of a number of reasons. …

  9. Guidelines for using regular expressions - Google Help

    Uses for regular expressions Using regular expressions, you can create content filters that can find the following: Text patterns Use this option to scan messages for patterns of letters, numbers, or a …

  10. Using RegEx in SQL Server - Stack Overflow

    Jan 19, 2012 · 7 Regular Expressions In SQL Server Databases Implementation Use Regular Expression - Description . Match any one character * Match any character + Match at least one …