欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php字符串操作

程序员文章站 2024-04-06 09:51:49
...
字符串:{user:link islocal='1'} /2013/userup/100/131a2Z34-800.doc {/user:link}
如何提取出/2013/userup/100/131a2Z34-800.doc

回复讨论(解决方案)

$str = "{user:link islocal='1'} /2013/userup/100/131a2Z34-800.doc {/user:link}";$preg = "#\{.*\}(.*)\{.*\}#iuUs";preg_match_all($preg, $str, $matches);print_r($matches[1]);

正则 #}\s*(\S+)\s*{#
或者用split()依据空格或花括号切分也能得到

相关标签: php字符串操作