当前位置: 代码迷 >> PHP >> php字符串操作解决方案
  详细解决方案

php字符串操作解决方案

热度:272   发布时间:2016-04-28 20:19:47.0
php字符串操作
字符串:{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()依据空格或花括号切分也能得到
  相关解决方案