Java 中的正则表达式模式
我正在使用正则表达式模式,我需要检查字符串的开头是否是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请记住,如果您正在解析大段文本或整个文件,则应将字符串强制转换为新引用,否则可能会因子字符串而导致内存泄漏。
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.
应该返回
Hello World!
。should return
Hello World!
.