标签: java regex string unicode digit
给定一个包含非拉丁文"数字"字符,即不是0-9中的一个,例如
String input = "3\u0e53\u0969"; // i.e. "3๓३"
由字符组成:
正则表达式与此匹配,要求所有字符为"数字"?
即,regex返回matches()的以下代码段中true必须包含哪些内容?
regex
matches()
true
"3๓३".matches(regex)