PHP 剥离字符串

发布于 2024-07-30 02:05:41 字数 153 浏览 4 评论 0原文

我想删除 - 之前字符串中的所有内容,并保留之后的内容。 例如:

15.11-101

我想删除 15.11 并保留 101。我尝试了一些不同的方法,但似乎无法使其工作,如果有人可以帮助我,那就太棒了:)

干杯

Leanne

I would like to strip everything in a string before a - and leave what's after that. For example:

15.11-101

I want to strip 15.11 and leave 101. I've tried a few different things, but can't seem to get it working, if anyone could help me out, that'd be fantastic :)

Cheers

Leanne

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

享受孤独 2024-08-06 02:05:41

你可以使用这样的东西:

$result = substr($original, strpos($original, '-') + 1);

You could use something like this:

$result = substr($original, strpos($original, '-') + 1);
白鸥掠海 2024-08-06 02:05:41

假设它只出现一次,您可以使用 explode 函数。

$s='15.11-101';
$a=explode('-',$s,1);
echo $a[1];

这应该是最快的方法。

assuming it appears only once, you can use the explode function.

$s='15.11-101';
$a=explode('-',$s,1);
echo $a[1];

This should be the fastest way.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文