The string could be as following line by line every time.
code=876 and town=87 and geocode in(1,2,3)
code=876 and town=878 and geocode in(1,2,3)
code=876 and town="878" and geocode in(1,2,3)
code=876 and town=8,43 and geocode in(1,2,3)
code=876 and town='8,43' and geocode in(1,2,3)
code=876 and town=-1 and geocode in(1,2,3)
code=876 and town=N/A and geocode in(1,2,3)
The result should be with preg_match
town=87
town=878
town="878"
town=8,43
town='8,43'
town=-1
town=N/A
Note: I know there are various ways to achieve this task but I want to regex only. Thanks