gpt4 book ai didi

java - 将正则表达式的匹配部分插入到替换文本中

转载 作者:太空宇宙 更新时间:2023-11-04 11:32:58 25 4
gpt4 key购买 nike

我有一些文字:

String s =“月球是一个天体。它是太阳系第五大天然卫星。月球是密度已知的卫星中第二密度的卫星。”

我想使用 replaseAll 方法将点之后或点+空格之后的每个字符大写。

s = s.replaceAll("((?<=\\.|\\.\\s)\\p{Lower})","$1".toUpperCase());

一切正常,除了toUpperCase()。它没有任何作用。为什么?我怎样才能让它发挥作用?

最佳答案

注意:使用相同的模式(您可以改进您的模式)

import java.util.regex.*;

...

StringBuffer str = new StringBuffer( "The Moon is an astronomical body.it is the fifth-largest natural satellite in the Solar System. the Moon is second-densest satellite among those whose densities are known." );
Pattern p = Pattern.compile( "(?<=\\.|\\.\\s)\\p{Lower}" );
Matcher m = p.matcher( str );

while (m.find()) {
str.setCharAt(m.end()-1, Character.toUpperCase(str.charAt(m.end()-1)) );
}

System.out.print(str);

关于java - 将正则表达式的匹配部分插入到替换文本中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43600020/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com