我有很多包含自定义标签的字符串:
hello {RT|12} world {RT|465} this is {RT|13243}a string with{RT|13}examples
我需要一个正则表达式来过滤掉 {RT|xx} 形式的所有标签数量,其中 xx 是任何可能长度的数字。由于我对正则表达式不太擅长,因此我一直在尝试以下方法:
preg_match("/{RT|.*}/", $string, $matches)
这现在过滤掉了 {RT|xx} 标记,但我需要 $matches 保存的是 araay(12, 456, 13243, 13)。谁能帮帮我?