当前位置:  开发笔记 > 编程语言 > 正文

将字符串拆分为PHP部分

如何解决《将字符串拆分为PHP部分》经验,为你挑选了1个好方法。

我需要拆分以下字符串.

$string = "This is string sample - $2565";
$split_point = " - ";

一:我需要能够使用正则表达式或任何其他匹配将字符串拆分为两部分,并指定要拆分的位置.

第二:也想为$做一个preg_match然后只在$右边抓一个数字.

有什么建议?



1> Chad Birch..:
$split_string = explode($split_point, $string);

preg_match('/\$(\d*)/', $split_string[1], $matches);
$amount = $matches[1];

如果你愿意,这可以在一个正则表达式中完成:

$pattern = '/^(.*)'.preg_quote($split_point).'\$(\d*)$/'

preg_match($pattern, $string, $matches);
$description = $matches[1];
$amount = $matches[2];

推荐阅读
LEEstarmmmmm
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有