我有一个字符串,我需要从中提取 street、city、state、zip 。
字符串可能看起来像
a)$str1 ="2500 South 3850 West Suite A Salt Lake City, UT 84120-7225";
b)$str2 ="19701 DaVinci Lake Forest, CA 92610";
c)$str3="abc ,def ,ca 1234"; -->(note there are two commas in this one)
我目前正在使用 split 函数来获取一个数组并使用这些值来完成我的工作,但我想要一个正则表达式来为我完成任务。我将不胜感激。谢谢