- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我对正则表达式相当陌生。在 Java 中,我试图找到模式:
(<numeric> (completes|completing)) OR ((completes|completing) <numeric>)
我使用的正则表达式是
([\d]*(.[\d]+))?\s*(completes|completing)\s*([\d]*(.[\d]+))?
它将匹配以下模式:
2.29 completes
completes 2.29
2.29 completing
completing 2.29
但是,输入文本的数字旁边可能有一个字母字符。在这些情况下,输出将是:
x3.25 completes 2.29 (match: completes 2.29)
2.29 completes 3.25x (match: 2.29 completes)
x3.25 completing 2.29 (match: completing 2.29)
2.29 completing 3.25x (match: 2.29 completing)
这是示例数据
n16 2.00/2.50 stg live completes 6.5
v/f -30 cso completing .006
m16 1.95p live completing 1
m16 1.95p live completing 1 again and out
n16 1.75/2.50 stg live completing 2.6
v16 2.75c x2.39 completing 9.9, 650x go
v16 2.75c x2.39 completing 9.9 again, 900 go
q 2.0 p vs 2.25/2.50 cs live .026 completing
q 2.00 p vs 2.25/2.50 c 2.21 completes 500x .026
v16 2.75c x2.39 completing 9.9 again and out, 1500x go
m16 1.90p live completing .25 and out
fh17 4.00/4.50cs x3.01 completing 4.9
z 2.00 p x2.89 completes .023 6 delta
fh17 4.00/4.50cs x3.01 completing 4.9 again, 500/month go
h17 4.00/6.00 cs x 2.99 completes 12.4 , 18 delta
h17 4.00/6.00 cs x 2.99 completes 12.4 , 18 delta , 500x , 12.3/12.5 follow
z 2.00 p x2.89 completes .024
fh17 4.00/4.50cs x3.01 completing 5 now
f17-h17 2.50/3.00 ps x 3.01 completes 23.3 , 21 delta
h17 5.00 c x 2.99 completes 8.7
cal18 2.25/4.25 fen live completing 1.2, 200/month go and out
正则表达式如何满足此要求?感谢您的帮助。
最佳答案
(?=x\s*[0-9.]+\s+complet).*?\K(?:complet(?:es|ing))\s*[0-9.]+|complet(?:es|ing)\s*[0-9.]+(?!\s*x|[0-9])|[0-9.]+\s*complet(?:es|ing)
此正则表达式将执行以下操作:
completes
或completing
以及前面或后面的数字x
,则排除前面的数字x
的尾随数字注意:将数字断言从 [0-9]+(?:\.[0-9])?
更改为 [0-9.]+
,因为您的示例文本似乎已经过验证并且格式更易于阅读。
现场演示
https://regex101.com/r/oA7fU4/1
示例文本
n16 2.00/2.50 stg live completes 6.5
v/f -30 cso completing .006
m16 1.95p live completing 1
m16 1.95p live completing 1 again and out
n16 1.75/2.50 stg live completing 2.6
v16 2.75c x2.39 completing 9.9, 650x go
v16 2.75c x2.39 completing 9.9 again, 900 go
q 2.0 p vs 2.25/2.50 cs live .026 completing
q 2.00 p vs 2.25/2.50 c 2.21 completes 500x .026
v16 2.75c x2.39 completing 9.9 again and out, 1500x go
m16 1.90p live completing .25 and out
fh17 4.00/4.50cs x3.01 completing 4.9
z 2.00 p x2.89 completes .023 6 delta
fh17 4.00/4.50cs x3.01 completing 4.9 again, 500/month go
h17 4.00/6.00 cs x 2.99 completes 12.4 , 18 delta
h17 4.00/6.00 cs x 2.99 completes 12.4 , 18 delta , 500x , 12.3/12.5 follow
z 2.00 p x2.89 completes .024
fh17 4.00/4.50cs x3.01 completing 5 now
f17-h17 2.50/3.00 ps x 3.01 completes 23.3 , 21 delta
h17 5.00 c x 2.99 completes 8.7
cal18 2.25/4.25 fen live completing 1.2, 200/month go and out
示例匹配
[0] => completes 6.5
[1] => completing .006
[2] => completing 1
[3] => completing 1
[4] => completing 2.6
[5] => completing 9.9
[6] => completing 9.9
[7] => .026 completing
[8] => 2.21 completes
[9] => completing 9.9
[10] => completing .25
[11] => completing 4.9
[12] => completes .023
[13] => completing 4.9
[14] => completes 12.4
[15] => completes 12.4
[16] => completes .024
[17] => completing 5
[18] => completes 23.3
[19] => completes 8.7
[20] => completing 1.2
NODE EXPLANATION
----------------------------------------------------------------------
(?= look ahead to see if there is:
----------------------------------------------------------------------
x 'x'
----------------------------------------------------------------------
\s* whitespace (\n, \r, \t, \f, and " ") (0
or more times (matching the most amount
possible))
----------------------------------------------------------------------
[0-9.]+ any character of: '0' to '9', '.' (1 or
more times (matching the most amount
possible))
----------------------------------------------------------------------
\s+ whitespace (\n, \r, \t, \f, and " ") (1
or more times (matching the most amount
possible))
----------------------------------------------------------------------
complet 'complet'
----------------------------------------------------------------------
) end of look-ahead
----------------------------------------------------------------------
.*? any character except \n (0 or more times
(matching the least amount possible))
----------------------------------------------------------------------
\K 'K'
----------------------------------------------------------------------
(?: group, but do not capture:
----------------------------------------------------------------------
complet 'complet'
----------------------------------------------------------------------
(?: group, but do not capture:
----------------------------------------------------------------------
es 'es'
----------------------------------------------------------------------
| OR
----------------------------------------------------------------------
ing 'ing'
----------------------------------------------------------------------
) end of grouping
----------------------------------------------------------------------
) end of grouping
----------------------------------------------------------------------
\s* whitespace (\n, \r, \t, \f, and " ") (0 or
more times (matching the most amount
possible))
----------------------------------------------------------------------
[0-9.]+ any character of: '0' to '9', '.' (1 or
more times (matching the most amount
possible))
----------------------------------------------------------------------
| OR
----------------------------------------------------------------------
complet 'complet'
----------------------------------------------------------------------
(?: group, but do not capture:
----------------------------------------------------------------------
es 'es'
----------------------------------------------------------------------
| OR
----------------------------------------------------------------------
ing 'ing'
----------------------------------------------------------------------
) end of grouping
----------------------------------------------------------------------
\s* whitespace (\n, \r, \t, \f, and " ") (0 or
more times (matching the most amount
possible))
----------------------------------------------------------------------
[0-9.]+ any character of: '0' to '9', '.' (1 or
more times (matching the most amount
possible))
----------------------------------------------------------------------
(?! look ahead to see if there is not:
----------------------------------------------------------------------
\s* whitespace (\n, \r, \t, \f, and " ") (0
or more times (matching the most amount
possible))
----------------------------------------------------------------------
x 'x'
----------------------------------------------------------------------
| OR
----------------------------------------------------------------------
[0-9] any character of: '0' to '9'
----------------------------------------------------------------------
) end of look-ahead
----------------------------------------------------------------------
| OR
----------------------------------------------------------------------
[0-9.]+ any character of: '0' to '9', '.' (1 or
more times (matching the most amount
possible))
----------------------------------------------------------------------
\s* whitespace (\n, \r, \t, \f, and " ") (0 or
more times (matching the most amount
possible))
----------------------------------------------------------------------
complet 'complet'
----------------------------------------------------------------------
(?: group, but do not capture:
----------------------------------------------------------------------
es 'es'
----------------------------------------------------------------------
| OR
----------------------------------------------------------------------
ing 'ing'
----------------------------------------------------------------------
) end of grouping
----------------------------------------------------------------------
关于java - 如何仅匹配前面/后面没有字母字符的数字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37443725/
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 要求提供代码的问题必须表现出对所解决问题的最低限度理解。包括尝试过的解决方案、为什么它们不起作用,以及预
为什么在 C# 中添加两个 char 结果是 int 类型? 例如,当我这样做时: var pr = 'R' + 'G' + 'B' + 'Y' + 'P'; pr 变量变为 int 类型。我希望它是
下面的代码可以编译,但 char 类型的行为与 int 类型的行为不同。 特别是 cout ::ikIsX >() ::ikIsX >() ::ikIsX >() using names
我正在寻找一个正则表达式,它可以匹配长度为 1 个或多个字符但不匹配 500 的内容。这将在 Rails 路由文件中使用,特别是用于处理异常。 路线.rb match '/500', to: 'err
对于 C 编程作业,我正在尝试编写几个头文件来检查所谓的“X 编程语言”的语法。我最近才开始,正在编写第一个头文件。这是我编写的代码: #ifndef _DeclarationsChecker_h_
为什么扩展的 ascii 字符(â、é 等)被替换为 字符? 我附上了一张图片...但我正在使用 PHP 从 MySQL 中提取数据,其中一些位置有扩展字符...我使用的是 Arial 字体。 您可以
我有一个与 R 中的断线相关的简单问题。 我正在尝试粘贴,但在获取(字符/数字)之间的断线时遇到问题。请注意,这些值包含在向量中(V1=81,V2=55,V3=25)我已经尝试过这段代码: cat(p
如何将 ANSI 字符 (char) 转换为 Unicode 字符 (wchar_t),反之亦然? 是否有用于此目的的任何跨平台源代码? 最佳答案 是的,在 中你有mbstowcs()和 wcsto
函数 fromCharCode 不适用于国际 ANSI 字符。例如,对于 ID 为 192 到 223 的俄语 ANSI (cp-1251) 字符,它返回特殊字符。如何解决这个问题? 我认为,需要将A
如果不喜欢,我想隐藏 id,但不起作用 SELECT * FROM character, character_actor WHERE character.id NOT LIKE character_a
现在这个程序成功地反转了键盘输入的单词。但是我想在我反转它之前“保存”指针中的单词,所以我可以比较两者,反转的和“原始的”,并检查它们是否是回文。我还没有太多经验,可能会出现比我知道的更多的错误,但我
Memcpy 和 memcmp 函数可以接受指针变量吗? char *p; char* q; memcpy(p,q,10); //will this work? memcmp(p,q,10); //w
恐怕我对一个相当过饱和的主题的细节有疑问,我搜索了很多,但找不到一个明确的答案来解决这个特定的明显-imho-重要的问题: 使用UTF-8将byte[]转换为String时,每个字节(8bit)都变成
我有一个奇怪的问题。我需要从 stat 命令打印输出字符串。 我已经编写了获取一些信息的代码。 import glob import os for file in glob.glob('system1
我正在使用 Java 并具有其值如下所示的字符串, String data = "vale-cx"; data = data.replaceAll("\\-", "\\-\\"); 我正在替换其中的“
String urlParameters = "login=test&password=te&ff"; 我有一个String urlParams,& - 是密码的一部分,如何使其转义,从而不被识别为分
大家好,我只想从此字符串中提取第一个字母: String str = "使 徒 行 傳 16:31 ERV-ZH"; 我只想获取这些字符: 使 徒 行 傳 并且不包括 ERV-ZH 仅数
这个问题已经有答案了: Crash or "segmentation fault" when data is copied/scanned/read to an uninitialized point
所以, 我有一个字符**;它本质上是一个句子,带有指向该句子中每个单词的指针;即 'h''i''\0''w''o''r''l''d''\0''y''a''y''!''\0' 在这种情况下,我希望使用可
这个问题在这里已经有了答案: Using quotation marks inside quotation marks (12 个答案) 关闭 7 年前。 如何打印 " 字符? 我知道打印 % 符号
我是一名优秀的程序员,十分优秀!