婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

主頁 > 知識庫 > Scala中正則表達式以及與模式匹配結合(多種方式)

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

熱門標簽:甘肅醫療外呼系統排名 西藏智能外呼系統代理商 梅縣地圖標注 貴港公司如何申請400電話 400電話辦理電話辦理 呼叫系統外呼只能兩次 ai電話機器人搭建 外呼系統無呼出路由是什么原因 地圖標注教學點

正則表達式

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

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

 /** 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(…)函數簡介

/** 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"))

模式匹配三

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

模式匹配四

 //數字和字母的組合正則表達式
 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...")
 }

本節所有程序源碼

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模式匹配

標簽:大興安嶺 常州 哈密 湖州 泰安 本溪 涼山 巨人網絡通訊聲明:本文標題《Scala中正則表達式以及與模式匹配結合(多種方式)》,本文關鍵詞  Scala,中,正則,表達式,以及,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。

  • 相關文章
  • 下面列出與本文章《Scala中正則表達式以及與模式匹配結合(多種方式)》相關的同類信息!
  • 本頁收集關于Scala中正則表達式以及與模式匹配結合(多種方式)的相關信息資訊供網民參考!
  • 推薦文章
    主站蜘蛛池模板: 米林县| 青铜峡市| 中西区| 双柏县| 文登市| 汝州市| 桐庐县| 安吉县| 天祝| 通江县| 禹州市| 鄂托克前旗| 响水县| 贡山| 仙桃市| 北海市| 新闻| 阳山县| 资中县| 静宁县| 合川市| 丹寨县| 扶绥县| 沙坪坝区| 通海县| 安乡县| 泰顺县| 大宁县| 阿鲁科尔沁旗| 黔西县| 阿拉善盟| 酒泉市| 漳州市| 广河县| 棋牌| 股票| 新闻| 宜州市| 宜阳县| 嘉禾县| 淮阳县|