public static void main(String[] args) { String str = "Hello, world! This is a test sentence."; String englishPunctuations = ",.!?;:\"'()[]<>"; String chinesePunctuations = ",。、!?;:“”‘’()【】《》"; String regex = "[\\p{Punct}&&[^。,、]]"; String replacedStr = str.replaceAll(regex, m -> { String punctuation = m.group(); int index = englishPunctuations.indexOf(punctuation); return index >= 0 ? String.valueOf(chinesePunctuations.charAt(index)) : punctuation; }); System.out.println(replacedStr); // Output: Hello, world! This is a test sentence。 }解析一下这段代码
时间: 2024-04-28 22:23:24 浏览: 41
C#中static void Main(string[] args) 参数示例详解
这段代码使用Java语言实现了将一段英文文本中的英文标点符号替换成中文标点符号的功能。具体过程如下:
1. 定义了一个字符串变量str,存储了待处理的文本内容。同时定义了两个字符串变量englishPunctuations和chinesePunctuations,分别存储英文标点符号和中文标点符号。
2. 定义了一个正则表达式regex,用于匹配所有英文标点符号。其中,\\p{Punct}表示匹配所有标点符号,&&[^。,、]表示除去中文标点符号。
3. 使用String类的replaceAll()方法,将正则表达式匹配到的字符串替换成中文标点符号或原标点符号。其中,m -> {...}是一个lambda表达式,用于实现替换操作。如果匹配到的标点符号是英文标点符号,则根据其在englishPunctuations字符串中的位置获取对应的中文标点符号进行替换,否则直接返回原标点符号。
4. 最后输出替换后的文本内容。
示例输出结果为:Hello, world! This is a test sentence。
阅读全文