专栏原创出处:github-源笔记文件 (opens new window) ,github-源码 (opens new window),欢迎 Star,转载请附上原文出处链接和本声明。
Scala 编程语言专栏系列笔记,系统性学习可访问个人复盘笔记-技术博客 Scala 编程语言 (opens new window)
# 正则表达式
正则表达式是用来找出数据中的指定模式(或缺少该模式)的字符串。
.r
方法可使任意字符串变成一个正则表达式 Regex。可以使用括号来同时匹配多组正则表达式。
import scala.util.matching.Regex
val numberPattern: Regex = "[0-9]".r
// 确保密码中包含一个数字
numberPattern.findFirstMatchIn("awesomepassword") match {
case Some(_) => println("Password OK")
case None => println("Password must contain a number")
}
// 多组正则表达式
val keyValPattern: Regex = "([0-9a-zA-Z-#() ]+): ([0-9a-zA-Z-#() ]+)".r
val input: String =
"""background-color: #A03300;
|background-image: url(img/header100.png);
|background-position: top center;
|background-repeat: repeat-x;
|background-size: 2160px 108px;
|margin: 0;
|height: 108px;
|width: 100%;""".stripMargin
for (patternMatch <- keyValPattern.findAllMatchIn(input))
println(s"key: ${patternMatch.group(1)} value: ${patternMatch.group(2)}")
// 结果:
// key: background-color value: #A03300
// key: background-image value: url(img
// key: background-position value: top center
// key: background-repeat value: repeat-x
// key: background-size value: 2160px 108px
// key: margin value: 0
// key: height value: 108px
// key: width value: 100