Skip to content

Commit

Permalink
fix: alpha numerics on rest of places
Browse files Browse the repository at this point in the history
  • Loading branch information
realdavidvega committed May 30, 2024
1 parent f1ec76a commit 1110c85
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ actual val o200k_base_regex: Regex
get() =
Regex(
listOf(
"""[^\r\n\$alphaChars]?[$upperCaseAndOtherLetters]*[$lowerCaseAndOtherLetters]+('s|'t|'re|'ve|'m|'ll|'d)?""",
"""[^\r\n\$alphaChars]?[$upperCaseAndOtherLetters]+[$lowerCaseAndOtherLetters]*('s|'t|'re|'ve|'m|'ll|'d)?""",
"""[^\r\n\$alphaNumerics]?[$upperCaseAndOtherLetters]*[$lowerCaseAndOtherLetters]+('s|'t|'re|'ve|'m|'ll|'d)?""",
"""[^\r\n\$alphaNumerics]?[$upperCaseAndOtherLetters]+[$lowerCaseAndOtherLetters]*('s|'t|'re|'ve|'m|'ll|'d)?""",
"""[$decimalNumbers]{1,3}""",
""" ?[^\s\$alphaNumerics]+[\r\n/]*""",
"""\s*[\r\n]+""",
Expand Down

0 comments on commit 1110c85

Please sign in to comment.