gpt4 book ai didi

regex - 将第 n 个出现替换为其反向

转载 作者:行者123 更新时间:2023-12-04 12:38:15 27 4
gpt4 key购买 nike

Scala 提供了开箱即用的方法来处理第一次或所有出现的模式。

仅替换第 n 次出现的最佳(或规范方式)是什么?

我可以想到几个解决方案,但我并不喜欢其中的任何一个。

第一个使用可变 var 来跟踪事件。

  def f1(str: String, pattern: String, occurrence: Int) = {
pattern.r.replaceAllIn(str, {var c = 0
m: Match => {
c = c + 1
if (c == occurrence) m.group(1).reverse else m.group(1)
}
})
}

println(f1("aaa bbb123, ccc456, ddd789, qqq1010 206z", """(\d+)""", 3))

第二个找到所有匹配项,选择所需的字符串并应用补丁方法。
  def f2(str: String, pattern: String, occurrence: Int) = {
val m = pattern.r.findAllMatchIn(str).toList.lift(occurrence-1)
m match {
case Some(m) => str.patch(m.start(1), m.group(1).reverse, m.group(1).length)
case None => str
}
}

println(f2("aaa bbb123, ccc456, ddd789, qqq1010 206z", """(\d+)""", 3))

有没有更简洁/更可取或更好的方法?

更新

zipAll 的另一种方法。
  def f5(str: String, pattern: String, occurrence: Int) = {
val m = pattern.r.findAllIn(str).toArray
val x = str.split(pattern)
if (x.size>occurrence) m(occurrence-1) = m(occurrence-1).reverse
x.zipAll(m, "", "").flatMap(t => List(t._1, t._2)).mkString
}

执行 1 000 000 次及以下用于测量运行时间的函数 f1...f5 的性能测试结果
  def time[R](block: => R): R = {
val t0 = System.nanoTime()
val result = block // call-by-name
val t1 = System.nanoTime()
println("Elapsed time: " + (t1 - t0) + "ns")
result
}

Elapsed time: 6352446800ns
Elapsed time: 4832129400ns
Elapsed time: 3153650800ns
Elapsed time: 3501623300ns
Elapsed time: 6276521500ns

f3 似乎是最好的(这是预期的)。

最佳答案

我认为您的第二种方法很好,但我不会打扰 List 操作。

def f3(str: String, pattern: String, occurrence: Int) = {
val mi = pattern.r.findAllMatchIn(str).drop(occurrence - 1)
if (mi.hasNext) {
val m = mi.next()
val s = m.group(0)
str.patch(m.start, s.reverse, s.length)
} else str
}

更新 :你也可以试试这个轻微的修改。
def f4(str: String, pattern: String, occurrence: Int) =
util.Try{pattern.r.findAllMatchIn(str).drop(occurrence - 1).next()
}.fold(_=>str, m=>str.patch(m.start, m.group(0).reverse, m.group(0).length))


f4("aaa bbb123, ccc456, ddd789, qqq1010 206z", "\\d+", 3)

它更简洁(单行)并且更安全(如果 pattern 无法编译为正则表达式,则不会抛出),但我不确定它实际上是否更可取。

关于regex - 将第 n 个出现替换为其反向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56152666/

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