How to perform a preg_match this
$needle = '"pid": "20"';
$haystack = '"pid": "1"' . '"pid": "12"' . '"pid": "20"' . '"pid": "14"';
and by the way the needle numeric value is not static
i am novice at preg_match
|
How to perform a
and by the way the needle numeric value is not static |
|||
|
|
This is exactly what you asked for, but if you provide what your expected output is or how you receive your haystack, there may be a better suited solution than regular expressions.
To learn more about regular expressions, check out this basic syntax reference. |
||||
|
|
|
Better to match 0 or spaces in the pid string so use your regex like this:
|
|||
|
|