如何匹配字符串直到文本文件末尾?

发布于 2024-12-02 09:04:04 字数 189 浏览 2 评论 0原文

在这行代码中,我希望它匹配从“Review Notes \50Optional\51”到文本文件末尾的字符串。我该怎么做?

reviewNotes = contents.match(/Review Notes \50optional\51\n==================(.*?)/m)[1].strip

In this line of code I want it to match the string from 'Review Notes \50optional\51' till the end of the text file. How can I do this?

reviewNotes = contents.match(/Review Notes \50optional\51\n==================(.*?)/m)[1].strip

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

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

发布评论

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

评论(2

逐鹿 2024-12-09 09:04:04
if subject =~ /Review Notes \\50optional\\51.*\z/m
    match = 
amp;
else
    match = ""
end
if subject =~ /Review Notes \\50optional\\51.*\z/m
    match = 
amp;
else
    match = ""
end
蒲公英的约定 2024-12-09 09:04:04
Review Notes \50optional\51.*$
Review Notes \50optional\51.*$
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文