英文: Regex that match words and words with apostrophes 问题 抱歉,如果这是一个重复的帖子。我有一个方法,应该解析文件中的所有单词。一个单词应该只包...
String.matches() 和正则表达式的正确用法
英文: correct usage of String.matches() and regex 问题 以下是翻译好的内容: 我试图检查我的输入是否包含除了 A-Z a-z , . ' ...
Java: 读取文件直到找到一个新日期
英文: Java: Read file as long as a new date is found 问题 public class versuch1 { public static void mai...
通过条件拆分包含换行的字符串
英文: Splitting string by new line with a condition 问题 以下是翻译好的部分: 我正在尝试仅在字符串不在我的“动作块”中时才通过\n拆分字符串。 这里有...
如何使用正则表达式选择字符串格式化的值
英文: How to pick string formatter value by using regex 问题 有一个带有格式的字符串: `今天是 %s,气温为 %d℉。` 如何使用 Java 中的...
尝试编写正则表达式以从3.0.0.10240-8423651中获取版本详细信息。
英文: Trying to write a regex to get the version details from the 3.0.0.10240-8423651 问题 import java.u...
将字符串按照 “|” 分割并获取总和
英文: Splitting strings as "|" and getting a total 问题 public void checkTotal() { double tota...
检查字符串中两个元素之间是否有空白。
英文: Checking if there is whitespace between two elements in a String 问题 我正在处理字符串,需要在两个字符/元素之间有空格时将它们...
在Java中,使用和不使用分组的正则表达式表现不同。
英文: Different behavior of regular expressions in java with and without using groups 问题 以下是您要翻译的内容: 我...
匹配N个数字,忽略换行符的正则表达式
英文: Regex to match N number of digits ignoring break lines only 问题 我需要在Java中构建一个正则表达式,匹配N个数字,忽略换行。请参...
119