一区二区三区在线-一区二区三区亚洲视频-一区二区三区亚洲-一区二区三区午夜-一区二区三区四区在线视频-一区二区三区四区在线免费观看

服務器之家:專注于服務器技術及軟件下載分享
分類導航

PHP教程|ASP.NET教程|Java教程|ASP教程|編程技術|正則表達式|C/C++|IOS|C#|Swift|Android|VB|R語言|JavaScript|易語言|vb.net|

服務器之家 - 編程語言 - 正則表達式 - Scala中正則表達式以及與模式匹配結合(多種方式)

Scala中正則表達式以及與模式匹配結合(多種方式)

2020-09-03 16:10易悠 正則表達式

這篇文章主要介紹了Scala中正則表達式以及與模式匹配結合,本文給大家介紹了多種模式匹配方式,需要的朋友可以參考下

正則表達式

?
1
2
3
4
//"""原生表達
val regex="""([0-9]+)([a-z]+)""".r
val numPattern="[0-9]+".r
val numberPattern="""\s+[0-9]+\s+""".r

說明:.r()方法簡介:Scala中將字符串轉換為正則表達式

?
1
2
3
4
5
/** You can follow a string with `.r`, turning it into a `Regex`. E.g.
*
* `"""A\w*""".r` is the regular expression for identifiers starting with `A`.
*/
def r: Regex = r()

模式匹配一

?
1
2
3
//findAllIn()方法返回遍歷所有匹配項的迭代器
for(matchString <- numPattern.findAllIn("99345 Scala,22298 Spark"))
 println(matchString)

說明:findAllIn(…)函數簡介

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/** Return all non-overlapping matches of this `Regex` in the given character
 * sequence as a [[scala.util.matching.Regex.MatchIterator]],
 * which is a special [[scala.collection.Iterator]] that returns the
 * matched strings but can also be queried for more data about the last match,
 * such as capturing groups and start position.
 *
 * A `MatchIterator` can also be converted into an iterator
 * that returns objects of type [[scala.util.matching.Regex.Match]],
 * such as is normally returned by `findAllMatchIn`.
 *
 * Where potential matches overlap, the first possible match is returned,
 * followed by the next match that follows the input consumed by the
 * first match:
 *
 * {{{
 * val hat = "hat[^a]+".r
 * val hathaway = "hathatthattthatttt"
 * val hats = (hat findAllIn hathaway).toList      // List(hath, hattth)
 * val pos = (hat findAllMatchIn hathaway map (_.start)).toList // List(0, 7)
 * }}}
 *
 * To return overlapping matches, it is possible to formulate a regular expression
 * with lookahead (`?=`) that does not consume the overlapping region.
 *
 * {{{
 * val madhatter = "(h)(?=(at[^a]+))".r
 * val madhats = (madhatter findAllMatchIn hathaway map {
 * case madhatter(x,y) => s"$x$y"
 * }).toList          // List(hath, hatth, hattth, hatttt)
 * }}}
 *
 * Attempting to retrieve match information before performing the first match
 * or after exhausting the iterator results in [[java.lang.IllegalStateException]].
 * See [[scala.util.matching.Regex.MatchIterator]] for details.
 *
 * @param source The text to match against.
 * @return  A [[scala.util.matching.Regex.MatchIterator]] of matched substrings.
 * @example  {{{for (words <- """\w+""".r findAllIn "A simple example.") yield words}}}
 */
 def findAllIn(source: CharSequence) = new Regex.MatchIterator(source, this, groupNames)

Scala中正則表達式以及與模式匹配結合(多種方式)

 

模式匹配二

?
1
2
//找到首個匹配項
println(numberPattern.findFirstIn("99ss java, 222 spark,333 hadoop"))

Scala中正則表達式以及與模式匹配結合(多種方式)

 

模式匹配三

?
1
2
3
//數字和字母的組合正則表達式
 val numitemPattern="""([0-9]+) ([a-z]+)""".r
 val numitemPattern(num, item)="99 hadoop"

Scala中正則表達式以及與模式匹配結合(多種方式)

 

模式匹配四

?
1
2
3
4
5
6
7
//數字和字母的組合正則表達式
val numitemPattern="""([0-9]+) ([a-z]+)""".r
val line="93459 spark"
line match{
 case numitemPattern(num,blog)=> println(num+"\t"+blog)
 case _=>println("hahaha...")
}

Scala中正則表達式以及與模式匹配結合(多種方式)

 

?
1
2
3
4
5
val line="93459h spark"
 line match{
  case numitemPattern(num,blog)=> println(num+"\t"+blog)
  case _=>println("hahaha...")
 }

Scala中正則表達式以及與模式匹配結合(多種方式)

 

本節所有程序源碼

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package kmust.hjr.learningScala19
/**
 * Created by Administrator on 2015/10/17.
 */
object RegularExpressOps {
 def main(args:Array[String]):Unit={
 val regex="""([0-9]+)([a-z]+)""".r//"""原生表達
 val numPattern="[0-9]+".r
 val numberPattern="""\s+[0-9]+\s+""".r
 //findAllIn()方法返回遍歷所有匹配項的迭代器
 for(matchString <- numPattern.findAllIn("99345 Scala,22298 Spark"))
  println(matchString)
 //找到首個匹配項
 println(numberPattern.findFirstIn("99ss java, 222 spark,333 hadoop"))
 //數字和字母的組合正則表達式
 val numitemPattern="""([0-9]+) ([a-z]+)""".r
 val numitemPattern(num, item)="99 hadoop"
 val line="93459h spark"
 line match{
  case numitemPattern(num,blog)=> println(num+"\t"+blog)
  case _=>println("hahaha...")
 }
 }
}

Scala中正則表達式以及與模式匹配結合(多種方式)

總結

以上所述是小編給大家介紹的Scala中正則表達式以及與模式匹配結合(多種方式),希望對大家有所幫助,如果大家有任何疑問歡迎給我留言,小編會及時回復大家的!

原文鏈接:https://blog.csdn.net/yizheyouye/article/details/49204595

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 我的妹妹最近有点怪在线观看 | 日韩精品一区二区三区中文版 | 国产午夜精品一区二区三区 | 日韩一品在线播放视频一品免费 | tube69xxxxhd日本| 完整秽淫刺激长篇小说 | 国产成人 免费观看 | 国产午夜精品福利久久 | 黑人好大 | 免费在线视频一区 | 亚洲天堂一区二区在线观看 | 欧美特黄特色aaa大片免费看 | 精品国产乱码久久久久久免费流畅 | 91尤物在线播放 | 国产一区日韩二区欧美三区 | 亚洲欧美成人综合 | 青草视频在线观看视频 | julianann办公室 | 高清国产在线观看 | 包臀裙女教师波多野结衣 | 亚洲bt区| 亚洲成人mv | 国产99精品视频 | 黄在线观看www免费看 | 午夜福利理论片在线播放 | 亚洲免费大全 | 天若有情1992国语版完整版 | juliaann大战两个黑人 | 国产成人精品男人的天堂538 | 精品久久99麻豆蜜桃666 | 性做久久久久久久久老女人 | 美女奶口隐私免费视频网站 | 国产午夜免费视频 | videos护士有奶水 | 操尼姑| 三级无删减高清在线影院 | 日本一区二区不卡久久入口 | 成人依依网 | 亚洲四虎 | 好大好长好紧爽免费 | 99热这里只有精品在线 |