首頁 > 軟體

Kotlin語言程式設計Regex正規表示式範例詳解

2022-08-29 22:04:59

前言

回想一下,在學Java時接觸的正規表示式,其實Kotlin中也是類似。只不過使用Kotlin 的語法來表達,更為簡潔。正則(Regex)用於搜尋字串或替換正規表示式物件,需要使用Regex(pattern:String)類。 在Kotlin中 Regex 是在 kotlin.text.regex 包。

Regex 建構函式

建構函式描述
Regex(pattern: String)給定的字串模式建立正則式。
Regex(pattern: String, option: RegexOption)給定的字串模式建立一個正則式並給出單個選項
Regex(pattern: String, options: Set<RegexOption>)給定的字串模式和給定選項集建立正規表示式

常用正則表達方法

方法描述
fun containsMatchIn(input: CharSequence): Boolean包含至少一個輸入字元
fun find(input: CharSequence, startIndex: Int = 0): MatchResult?返回輸入字元序列中正規表示式的第一個匹配項,從給定的startIndex開始
fun findAll(input: CharSequence, startIndex: Int = 0): Sequence<MatchResult>返回輸入字串中所有出現的正規表示式,從給定的startIndex開始
fun matchEntire(input: CharSequence): MatchResult?用於匹配模式中的完整輸入字元
fun matches(input: CharSequence): Boolean輸入字元序列是否與正規表示式匹配
fun replace(input: CharSequence, replacement: String): String用給定的替換字串替換正規表示式的所有輸入字元序列

範例展示

這裡通過呼叫幾個常見正則函數進行幾組資料查詢,展示常用正規表示式用法:

1.containsMatchIn(input: CharSequence) 包含指定字串

使用場景:判定是否包含某個字串

val regex = Regex(pattern = "Kot")
val matched = regex.containsMatchIn(input = "Kotlin")
執行結果:
matched = true

2.matches(input: CharSequence) 匹配字串

使用場景:匹配目標字串

val regex = """a([bc]+)d?""".toRegex()
val matched1 = regex.matches(input = "xabcdy")
val matched2 = regex.matches(input = "abcd")
執行結果:
matched1 = false
matched2 = true

3.find(input: CharSequence, startIndex: Int = 0) 查詢字串,並返回第一次出現

使用場景:返回首次出現指定字串

val phoneNumber :String? = Regex(pattern = """d{3}-d{3}-d{4}""")
.find("phone: 123-456-7890, e..")?.value
結果列印:
123-456-7890

4.findAll(input: CharSequence, startIndex: Int = 0) 查詢字串,返回所有出現的次數

使用場景:返回所有情況出現目標字串

val foundResults = Regex("""d+""").findAll("ab12cd34ef 56gh7 8i")
val result = StringBuilder()
for (text in foundResults) {
    result.append(text.value + " ")
}
執行結果:
12 34 56 7 8

5.replace(input: CharSequence, replacement: String) 替換字串

使用場景:將指定某個字串替換成目標字串

val replaceWith = Regex("beautiful")
val resultString = replaceWith.replace("this picture is beautiful","awesome")
執行結果:
this picture is awesome

總結

通過Kotlin中封裝好的正則函數表示式,按規定語法形式傳入待查字串資料以及規則就可以很高效獲取到目標資料,它最大的功能就是在於此。可以與Java中的正則形式類比,會掌握的更牢固。

以上就是Kotlin語言程式設計Regex正規表示式範例詳解的詳細內容,更多關於Kotlin Regex正規表示式的資料請關注it145.com其它相關文章!


IT145.com E-mail:sddin#qq.com