Scala中正則表達式以及與模式匹配結(jié)合(多種方式)
正則表達式
//"""原生表達 val regex="""([0-9]+)([a-z]+)""".r val numPattern="[0-9]+".r val numberPattern="""\s+[0-9]+\s+""".r
說明:.r()方法簡介:Scala中將字符串轉(zhuǎn)換為正則表達式
/** 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()
模式匹配一
//findAllIn()方法返回遍歷所有匹配項的迭代器 for(matchString <- numPattern.findAllIn("99345 Scala,22298 Spark")) println(matchString)
說明:findAllIn(…)函數(shù)簡介
/** 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)
模式匹配二
//找到首個匹配項 println(numberPattern.findFirstIn("99ss java, 222 spark,333 hadoop"))
模式匹配三
//數(shù)字和字母的組合正則表達式 val numitemPattern="""([0-9]+) ([a-z]+)""".r val numitemPattern(num, item)="99 hadoop"
模式匹配四
//數(shù)字和字母的組合正則表達式 val numitemPattern="""([0-9]+) ([a-z]+)""".r val line="93459 spark" line match{ case numitemPattern(num,blog)=> println(num+"\t"+blog) case _=>println("hahaha...") }
val line="93459h spark" line match{ case numitemPattern(num,blog)=> println(num+"\t"+blog) case _=>println("hahaha...") }
本節(jié)所有程序源碼
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")) //數(shù)字和字母的組合正則表達式 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...") } } }
總結(jié)
以上所述是小編給大家介紹的Scala中正則表達式以及與模式匹配結(jié)合(多種方式),希望對大家有所幫助,如果大家有任何疑問歡迎給我留言,小編會及時回復大家的!
上一篇:沒有了
欄 目:Scala
下一篇:沒有了
本文標題:Scala中正則表達式以及與模式匹配結(jié)合(多種方式)
本文地址:http://mengdiqiu.com.cn/a1/Scala/11991.html
您可能感興趣的文章
- 01-11php下關(guān)于Cannot use a scalar value as an array的解決辦法
- 01-11PHP警告Cannot use a scalar value as an array的解決方法
- 01-11Windows7下安裝Scala 2.9.2教程
- 01-11淺談Scala的Class、Object和Apply()方法
- 01-11深入理解Scala函數(shù)式編程過程
- 01-11Scala基礎(chǔ)簡介及代碼示例
- 01-11Scala安裝及環(huán)境圖文配置教程
- 01-11利用Gradle如何構(gòu)建scala多模塊工程的步驟詳解
- 01-11linux下搭建scala環(huán)境并寫個簡單的scala程序
- 01-11Scala的文件讀寫操作與正則表達式


閱讀排行
本欄相關(guān)
- 01-11php下關(guān)于Cannot use a scalar value as an ar
- 01-11PHP警告Cannot use a scalar value as an array的
- 01-11Windows7下安裝Scala 2.9.2教程
- 01-11淺談Scala的Class、Object和Apply()方法
- 01-11深入理解Scala函數(shù)式編程過程
- 01-11Scala基礎(chǔ)簡介及代碼示例
- 01-11Scala安裝及環(huán)境圖文配置教程
- 01-11linux下搭建scala環(huán)境并寫個簡單的sca
- 01-11利用Gradle如何構(gòu)建scala多模塊工程的步
- 01-11Scala的文件讀寫操作與正則表達式
隨機閱讀
- 01-11ajax實現(xiàn)頁面的局部加載
- 01-10SublimeText編譯C開發(fā)環(huán)境設(shè)置
- 01-10C#中split用法實例總結(jié)
- 08-05DEDE織夢data目錄下的sessions文件夾有什
- 01-11Mac OSX 打開原生自帶讀寫NTFS功能(圖文
- 01-10delphi制作wav文件的方法
- 01-10使用C語言求解撲克牌的順子及n個骰子
- 08-05dedecms(織夢)副欄目數(shù)量限制代碼修改
- 04-02jquery與jsp,用jquery
- 08-05織夢dedecms什么時候用欄目交叉功能?