Fork me on GitHub

scala正则表达式实战

案例一

说明:源码来自spark ConfigReader类

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
private object ConfigReader {

private val REF_RE = "\\$\\{(?:(\\w+?):)?(\\S+?)\\}".r

}
private def substitute(input: String, usedRefs: Set[String]): String = {
if (input != null) {
ConfigReader.REF_RE.replaceAllIn(input, { m =>
val prefix = m.group(1)
val name = m.group(2)
val ref = if (prefix == null) name else s"$prefix:$name"
require(!usedRefs.contains(ref), s"Circular reference in $input: $ref")

val replacement = bindings.get(prefix)
.flatMap(getOrDefault(_, name))
.map { v => substitute(v, usedRefs + ref) }
.getOrElse(m.matched)
Regex.quoteReplacement(replacement)
})
} else {
input
}
}

本文标题:scala正则表达式实战

文章作者:tang

发布时间:2019年05月22日 - 14:05

最后更新:2019年05月22日 - 14:05

原始链接:https://tgluon.github.io/2019/05/22/scala正则表达式实战/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。

-------------本文结束感谢您的阅读-------------