How do I ignore the question mark in a regular expression?
For example:
xxx.com/supplier.php?id=500
I want to write something like:
xxx.com/supplier.php?id=.*
Therefore I need to ignore the question mark.
How do I ignore the question mark in a regular expression?
For example:
xxx.com/supplier.php?id=500
I want to write something like:
xxx.com/supplier.php?id=.*
Therefore I need to ignore the question mark.