Kotlin語言編程Regex正則表達式實例詳解

前言

回想一下,在學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正則表達式的資料請關註WalkonNet其它相關文章!

推薦閱讀: