我有以下字符串:
Name=Joe|LastName=Doe|City=NY|Country=US|Currency=$|Phone=0123456789|Adress=null
例如,我想检索电话号码0123456789
这是我所做的:
Phone=(.*)|
https://regex101.com/r/4nlrsW/2
我想在 PHP 中使用它:
preg_match('Phone=(.*)|', $mystring, $matches, PREG_OFFSET_CAPTURE); print_r($matches);
繁花不似锦