- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是一个我还找不到答案的正则表达式问题:
输入:
"the current time is <start time>00:00:00<end time>. at 00:00:00 there is a firework. Another appearance of 00:00:00."
期望的输出:
"the current time is <start time>00:00:00<end time>. at <start time>00:00:00<end time> there is a firework. Another appearance of <start time>00:00:00<end time>."
解决方案不能涉及首先按句子拆分字符串。
我尝试了什么:
一个简单的 input.replace(group, replace)
将不起作用,因为已经有一个不应该被替换的匹配项。
public static void main(String[] args) throws ParseException
{
String input = "the current time is <start time>00:00:00<end time>. at 00:00:00 there is a firework. Another appearance of 00:00:00.";
Pattern p = Pattern.compile("(<start time>)?(00:00:00)(<end time>)?");
Matcher m = p.matcher(input);
while(m.find())
{
if(m.group(1) != null) { continue; }
String substr1 = input.substring(0, m.start(2));
String substr2 = input.substring(m.end(2), input.length());
String repl = "<start time>" + m.group(2) + "<end time>";
input = substr1 + repl + substr2;
}
}
最佳答案
您的代码不工作的原因是您在循环内修改 input
,使匹配结果的索引无效。
但好消息是您根本不需要循环,您可以结合使用负向后视和负向前视 ( details here ) 来自动跳过已经具有包装器的实例,并使用 replaceAll
来做适合你的循环:
public static void main(String[] args) throws Exception
{
String input = "the current time is <start time>00:00:00<end time>. at 00:00:00 there is a firework. Another appearance of 00:00:00.";
String result = input.replaceAll("(?<!<start time>)00:00:00(?!<end time>)", "<start time>00:00:00<end time>");
// Negative lookbehind -----------^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^
// Negative lookahead ------------------------------------/
System.out.println(result);
}
负向后视表示“如果文本前面有 this,则不匹配”,负向前视表示“如果文本后有 this,则不匹配。”
关于java - 如何只替换部分匹配的子串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47809286/
我正在尝试创建一个程序,其中字符串的前三个字符重复给定次数,如下所示: foo('Chocolate', 3) # => 'ChoChoCho' foo('Abc', 3) # => 'AbcAbcA
我有以下字符串: std::string str = "Mode:AAA:val:101:id:A1"; 我想分离一个位于 "val:" 和 ":id" 之间的子字符串,这是我的方法: std::st
DNA 字符串可以是任意长度,包含 5 个字母(A、T、G、C、N)的任意组合。 压缩包含 5 个字母(A、T、G、C、N)的 DNA 字母串的有效方法是什么?不是考虑每个字母表 3 位,我们可以使用
是否有一种使用 levenstein 距离将一个特定字符串与第二个较长字符串中的任何区域进行匹配的好方法? 例子: str1='aaaaa' str2='bbbbbbaabaabbbb' if str
使用 OAuth 并使用以下函数使用我们称为“foo”(实际上是 OAuth token )的字符串加密 key public function encrypt( $text ) { // a
我是一名优秀的程序员,十分优秀!