Skip to content

NotASCII

Giuseppe Cannella edited this page Feb 19, 2020 · 3 revisions
Type name example
ASCII テスト。
import com.github.gekomad.regexcollection.ASCII
import com.github.gekomad.regexcollection.Validate.validate

assert(validate[ASCII]("2sdf.0") == None)
assert(validate[ASCII](" 前に来た時は北側からで、当時の光景はいまでも思い出せる。") == Some(" 前に来た時は北側からで、当時の光景はいまでも思い出せる。"))
assert(validate[ASCII]("の中央には純白のホワイトパレス") == Some("の中央には純白のホワイトパレス"))
assert(validate[ASCII](" ……あ。") == Some(" ……あ。"))
assert(validate[ASCII]("テスト。") == Some("テスト。"))
import com.github.gekomad.regexcollection.NotAscii
import com.github.gekomad.regexcollection.Validate.findAll

assert(findAll[NotAscii]("""    テ ス  ト      a ああ   bw""") == List("テ ス  ト      ", "ああ   "))
Clone this wiki locally