Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将字符串中大括号内的内容替换为preg_replace_callback. 这是一个示例字符串:
preg_replace_callback
230|321;312|123;{413|333;413|334;413|335};583|221
我想要做的是能够用其他东西替换大括号 ( {413|333;413|334;413|335}) 里面的东西,但我不太清楚如何去regex expression. 我尝试了一些但没有结果。
{413|333;413|334;413|335}
regex expression
一点帮助?
谢谢!
如果要匹配从左大括号到右大括号的所有内容:
/{[^}]+}/