我正在尝试构造preg_match_all
以搜索在以 开头[$_
和结尾的字符串中找到的所有值_$]
,并将找到的值存储在数组中。
因此,在以下示例中:
$str = "I have a [$_dog_$], a [$_cat_$], but not a ferret.";
preg_match_all($regex_pattern, $str, $normalPets);
$normalPets
应该包含[$_dog_$]
和[$_cat_$]
。
这是$regex_pattern
为了什么?
谢谢