4

regex101: build, test, and debug regex

 2 years ago
source link: https://regex101.com/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
build, test, and debug regex
An explanation of your regex will be automatically generated as you type.
Detailed match information will be displayed here automatically.
Search reference
  • All Tokens
  • Common Tokens
  • General Tokens
  • Anchors
  • Meta Sequences
  • Quantifiers
  • Group Constructs
  • Character Classes
  • Flags/Modifiers
  • Substitution
  • A single character of: a, b or c
    [abc]
  • A character except: a, b or c
    [^abc]
  • A character in the range: a-z
    [a-z]
  • A character not in the range: a-z
    [^a-z]
  • A character in the range: a-z or A-Z
    [a-zA-Z]
  • Any single character
  • Alternate - match either a or b
  • Any whitespace character
  • Any non-whitespace character
  • Any digit
  • Any non-digit
  • Any word character
  • Any non-word character
  • Match everything enclosed
    (?:...)
  • Capture everything enclosed
    (...)
  • Zero or one of a
  • Zero or more of a
  • One or more of a
  • Exactly 3 of a
  • 3 or more of a
    a{3,}
  • Between 3 and 6 of a
    a{3,6}
  • Start of string
  • End of string
  • A word boundary
  • Non-word boundary

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK