Artboard 1
RegExr v3.1

Expression

JavaScript
Flags

Text

No match.

Tools

  • Replace
  • List
  • Details
  • Explain
Toggle tools panel
Roll-over elements below to highlight in the Expression above. Click to open in Reference.
( Capturing group #1. Groups multiple tokens together and creates a capture group for extracting a substring or using a backreference.
[ Character set. Match any character in the set.
A-Z Range. Matches a character in the range "A" to "Z" (char code 65 to 90). Case sensitive.
]  
)  
\w Word. Matches any word character (alphanumeric & underscore).
+ Quantifier. Match 1 or more of the preceding token.