Scala 의 정규 표현 식 및 패턴 과 일치 하 는 결합(다양한 방식)
//"""
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()
패턴 일치 1
//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)
패턴 매 칭 2
//
println(numberPattern.findFirstIn("99ss java, 222 spark,333 hadoop"))
패턴 매 칭 3
//
val numitemPattern="""([0-9]+) ([a-z]+)""".r
val numitemPattern(num, item)="99 hadoop"
패턴 매 칭 4
//
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 의 정규 표현 식 과 패턴 과 일치 하 는 결합(여러 가지 방식)입 니 다.여러분 에 게 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 시 면 저 에 게 메 시 지 를 남 겨 주세요.소 편 은 제때에 답 해 드 리 겠 습 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
JDK 11을 사용하여 NixOS에서 Play Framework 실행저는 NixOS로 전환하고 있으며 이에 대해 다소 기대하고 있습니다. 오늘 저는 sbt 설치 및 JDK 11로 다운그레이드를 포함하여 Play Framework 환경을 손쉽게 설치하고 실행할 수 있게 된 것을 축하합...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.