What regular expression can I use to find this?
&v=15151651616
Where &v= is a static string and the number part may vary.
|
What regular expression can I use to find this?
Where |
||||
|
|
|
"^&v=[0-9]+$" if u want at least 1 number or "^&v=[0-9]*$" if no number must match too. If u want it to match inside another sequence just remove the ^ and $ which mean sequence beginning by (^) and sequence ending with ($) |
|||||
|
|
|
You can use the following regular expression:
This matches To be fair, you could have figured this out by looking at any regular expression documentation. |
|||
|
|