What is the difference between encasing part of a regular expression in () (parentheses) and doing it in [] (square brackets)?
How does this:
[a-z0-9]
differ from this:
(a-z0-9)
?
|
What is the difference between encasing part of a regular expression in () (parentheses) and doing it in [] (square brackets)? How does this:
differ from this:
? |
|||||
|
|
|
|||
|
|
|
|
|||||
|
|
The The |
|||
|
|
|
|
|||
|
|
|
Try ([a-z0-9]) to capture a mixed string of lowercase letters and numbers, as well as capture for back references (or extraction). |
|||
|
|
|
|
|||||||
|