Java 中的正则表达式模式

发布于 2024-10-07 17:12:28 字数 165 浏览 1 评论 0原文

我正在使用正则表达式模式,我需要检查字符串的开头是否是 HTML 简单文本并返回该字符串。例如:

Hello World!<TAG> &nsbp;

应该返回:

Hello World!

I am using Regex Patterns and I need to check that the beginning of the String is an HTML Simple Text and return that String. So for example:

Hello World!<TAG> &nsbp;

Should return:

Hello World!

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

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

发布评论

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

评论(2

£烟消云散 2024-10-14 17:12:28

请记住,如果您正在解析大段文本或整个文件,则应将字符串强制转换为新引用,否则可能会因子字符串而导致内存泄漏。

new String("Hello World!<TAG> &nsbp;".split("<")[0])

Remember that if you're parsing large sections of text or entire files, you should force the String into a new reference otherwise you may get a memory leak due to substrings.

new String("Hello World!<TAG> &nsbp;".split("<")[0])
失眠症患者 2024-10-14 17:12:28
"Hello World!<TAG> &nsbp;".split("<")[0]

应该返回 Hello World!

"Hello World!<TAG> &nsbp;".split("<")[0]

should return Hello World!.

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