php 中带下划线的 rtrim

发布于 2024-12-04 19:53:40 字数 301 浏览 1 评论 0原文

我的行是“Delux Room_room”。我想要得到“豪华房”。我尝试了以下代码。

以下代码给出以下结果。

echo $row.'<br/>';
echo rtrim($row, 'room') .'<br/>'; 
echo rtrim($row, '_room') .'<br/>'; 

结果;-

Delux Room_room
Delux Room_
Delux R

但我想要豪华房。请帮我。

I have line as 'Delux Room_room'. I want get 'Delux Room' as result. I tried following codes.

Following code give following result.

echo $row.'<br/>';
echo rtrim($row, 'room') .'<br/>'; 
echo rtrim($row, '_room') .'<br/>'; 

Result ;-

Delux Room_room
Delux Room_
Delux R

But i want Delux Room. Please help me.

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

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

发布评论

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

评论(4

小巷里的女流氓 2024-12-11 19:53:40
echo rtrim($row, '_room') .'<br/>'; 

这表示“从字符串末尾删除字符,直到找到不是 _ro的字符。米。”这显然不是你的意思。来自 PHP 手册

$charlist 您还可以通过 charlist 参数指定要删除的字符。只需列出您想要删除的所有字符即可。使用 .. 您可以指定字符范围。

您提供一个字符列表,而不是要删除的字符串。

您可能应该使用 substr 代替:

echo substr($row, 0, -5); // remove the last 5 characers

另一种解决方案是使用 str_replace 替换不需要的子字符串:

echo str_replace('_room', '', $row); // replace "_room" with an empty string

请注意,这不如 substr 方法。

echo rtrim($row, '_room') .'<br/>'; 

That says "remove characters from the end of the string until you get to one that isn't _, r, o or m." Which obviously isn't what you mean. From the PHP manual:

$charlist You can also specify the characters you want to strip, by means of the charlist parameter. Simply list all characters that you want to be stripped. With .. you can specify a range of characters.

You provide a list of characters, not a string you want to remove.

You should probably use substr instead:

echo substr($row, 0, -5); // remove the last 5 characers

Another solution would be to use str_replace to replace unwanted substrings:

echo str_replace('_room', '', $row); // replace "_room" with an empty string

Note that this is less precise than the substr approach.

所有深爱都是秘密 2024-12-11 19:53:40

rtrim 的第二个参数是一组字符。您必须编写自己的方法来删除特定字符串:

function rtrim_str($str, $trim) {
  if (substr($str, -strlen($trim)) == $trim) {
    return substr($str, 0, -strlen($trim));
  }
  return $str; // String not present at end
}

echo rtrim_str($row, '_room');

rtrim's second argument is a set of characters. You'll have to write your own method to remove a specific string instead:

function rtrim_str($str, $trim) {
  if (substr($str, -strlen($trim)) == $trim) {
    return substr($str, 0, -strlen($trim));
  }
  return $str; // String not present at end
}

echo rtrim_str($row, '_room');
提笔书几行 2024-12-11 19:53:40

作为@lonesomeday 的解决方案的替代方案,如果您的过去的长度是可变的:

$pos = strrpos($row, '_');
echo $substr($row, 0, $pos);

Alternatively to @lonesomeday's solution, if your last past is of variable length:

$pos = strrpos($row, '_');
echo $substr($row, 0, $pos);
时光匆匆的小流年 2024-12-11 19:53:40

您应该使用 str_replace 而不是 rtrim,如下所示:

echo $row.'<br/>';
echo str_replace('room', '', $row) .'<br/>'; 
echo str_replace('_room', '', $row) .'<br/>'; 

You should use str_replace instead of rtrim, like this:

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