如何替换文字字符串?

发布于 2024-12-07 21:05:52 字数 488 浏览 1 评论 0原文

我需要一些有关 REGEX 的帮助。

从网站上抓取后,我在字符串变量中有以下内容。

16:50 to 17:50 OOPS LAB : Scheduled Class : Shikha Jain : E1-0LA4 Download Course materials 15:45 to 16:45 OOPS LAB : Scheduled Class : Shikha Jain : E1-0LA4 Download Course materials 14:40 to 15:40 FR - III : Scheduled Class : Ravi Shankar Kumar : E3-218 Download Course materials  

我想做的是,去掉“下载课程材料”部分。我尝试了 str_replace 和 preg_replace 但它们都始终无法成功替换。

I wanted some help regarding REGEX.

I have the following in a string variable after scraping from a website.

16:50 to 17:50 OOPS LAB : Scheduled Class : Shikha Jain : E1-0LA4 Download Course materials 15:45 to 16:45 OOPS LAB : Scheduled Class : Shikha Jain : E1-0LA4 Download Course materials 14:40 to 15:40 FR - III : Scheduled Class : Ravi Shankar Kumar : E3-218 Download Course materials  

What i want to do is, get rid of the " Download Course materials" part. I tried the str_replace and preg_replace but they all kept failing to replace successfully.

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

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

发布评论

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

评论(1

萌︼了一个春 2024-12-14 21:05:52

请注意,&符号已被实体替换: (感谢 Viktor):

$new_string = str_replace(' Download Course materials', '', $your_string)

应该完成这项工作。

Note that the ampersand has been replaced by an entity:   (thanks Viktor) :

$new_string = str_replace(' Download Course materials', '', $your_string)

Should do the job.

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