We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45877b0 commit da3ee58Copy full SHA for da3ee58
_zh-cn/tour/regular-expression-patterns.md
@@ -49,7 +49,7 @@ val input: String =
49
for (patternMatch <- keyValPattern.findAllMatchIn(input))
50
println(s"key: ${patternMatch.group(1)} value: ${patternMatch.group(2)}")
51
```
52
-此例中我们从字符串中解析出多组键值对. 每一个匹配值都包含一组子匹配值. 一下是输出:
+此例中我们从字符串中解析出多组键值对. 每一个匹配值都包含一组子匹配值. 结果如下:
53
54
key: background-color value: #A03300
55
key: background-image value: url(img
0 commit comments