使用 Java 和 RegEx 转换字符串中的大小写
问题:Turn
"My Testtext TARGETSTRING My Testtext"
into
"My Testtext targetstring My Testtext"
Perl 支持可在替换字符串中使用的“\L”操作。
模式类不支持此操作:
此类不支持 Perl 构造: [...] 预处理操作 \l \u、\L 和 \U。 https://docs.oracle.com/javase /10/docs/api/java/util/regex/Pattern.html
Problem: Turn
"My Testtext TARGETSTRING My Testtext"
into
"My Testtext targetstring My Testtext"
Perl supports the "\L"-operation which can be used in the replacement-string.
The Pattern-Class does not support this operation:
Perl constructs not supported by this class:
[...]
The preprocessing operations \l \u, \L, and \U.
https://docs.oracle.com/javase/10/docs/api/java/util/regex/Pattern.html
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您不能在 Java 正则表达式中执行此操作。您必须使用
String.toUpperCase()
和toLowerCase()
代替。以下示例展示了如何使用正则表达式查找句子中长度至少为 3 的单词并将其大写。
注意
appendReplacement
和appendTail
请注意,上述解决方案使用
substring
并管理tail
索引等。事实上,如果您使用Matcher.appendReplacement
和appendTail。请注意
sb
现在如何成为StringBuffer
而不是StringBuilder
。在Matcher
提供StringBuilder
重载之前,如果您想使用这些方法,您将不得不使用较慢的StringBuffer
。以较低的效率换取较高的可读性是否值得,这取决于您。
另请参阅
StringBuilder
和StringBuffer
< /a>You can't do this in Java regex. You'd have to manually post-process using
String.toUpperCase()
andtoLowerCase()
instead.Here's an example of how you use regex to find and capitalize words of length at least 3 in a sentence
Note on
appendReplacement
andappendTail
Note that the above solution uses
substring
and manages atail
index, etc. In fact, you can go without these if you useMatcher.appendReplacement
andappendTail
.Note how
sb
is now aStringBuffer
instead ofStringBuilder
. UntilMatcher
providesStringBuilder
overloads, you're stuck with the slowerStringBuffer
if you want to use these methods.It's up to you whether the trade-off in less efficiency for higher readability is worth it or not.
See also
StringBuilder
andStringBuffer
in JavaJava9+
从 Java 9+ 开始,您可以使用 Matcher::replaceAll 您可以在其中使用
Function
例如,我们使用 多基因润滑剂:或者只是:
输出
Java9+
From Java 9+ you can use Matcher::replaceAll where you can use a
Function<MatchResult, String>
for example we use the example of polygenelubricants :Or Just :
Output
要在正则表达式级别执行此操作,您必须使用
\U
打开大写模式,并使用\E
将其关闭。以下是如何在 IntelliJ IDEAfind-and-replace
对话框中使用此功能的示例,该对话框将类字段集转换为 JUnit 断言(在 IDE 工具提示中是find-and-replace 的结果)
转换):To do this on regexp level you have to use
\U
to switch on uppercase mode and\E
to switch it off. Here is an example how to use this feature in IntelliJ IDEAfind-and-replace
dialog which transforms set of class fields to JUnit assertions (at IDE tooltip is a result offind-and-replace
transformation):您可以使用 正则表达式捕获组 (如果您确实需要使用正则表达式,即意思是“
TARGETSTRING
”足够复杂并且足够“规则”,足以证明被正则表达式检测到是合理的)。然后,您可以将
toLowerCase()
应用于组 #1。You could use the regexp capturing group (if you really need to use regex, that is, meaning if "
TARGETSTRING
" is complex enough and "regular" enough to justify being detected by a regex).You would then apply
toLowerCase()
to the group #1.“Java 8”中的这个转换函数怎么样?
How about this transformation function in "Java 8"