我如何检查字符串是返回布尔值的泰语,如 isalpha()
Posted
技术标签:
【中文标题】我如何检查字符串是返回布尔值的泰语,如 isalpha()【英文标题】:How can i check string is Thai language that return boolean like isalpha() 【发布时间】:2019-05-24 03:46:30 【问题描述】:我正在尝试使用regex
或任何可以解决的问题来检查str
是否只是泰语字符
我正在尝试使用
re.compile(u"[^\u0E00-\u0E7F']|^'|'$|''")
ret = regexp_thai.sub("", s)
分割另一种语言或数字 顺便说一句,它只是切片而不是返回布尔值
我希望输出像
s = "engภาษาไทยที่มีสระ123!@"
regexp_thai = re.compile(u"[^\u0E00-\u0E7F']|^'|'$|''")
ret = regexp_thai.sub("", s)
print(ret) # ภาษาไทยที่มีสระ
print(isthai(ret)) # True
u0E00-u0E7F
是泰语的 unicode
isthai
函数怎么写
【问题讨论】:
基本上bool(re.match("^[\u0E00-\u0E7F]*$", test))
应该评估为True
iff test
仅包含泰语字符。对标点符号等进行微调是必要的。
哇,我想要的谢谢你@MichaelButscher 解决了!!
【参考方案1】:
我不太确定想要的输出是什么。但是,我猜我们喜欢捕获 Tai 字母,根据您的原始表达,我们可能只想添加一个简单的字符列表,用捕获组包装它,然后从左到右滑动我们想要的 Tai 字母,可能类似于:
([\u0E00-\u0E7F]+)
DEMO
测试
# coding=utf8
# the above tag defines encoding for this document and is for Python 2.x compatibility
import re
regex = r"([\u0E00-\u0E7F]+)"
test_str = "engภาษาไทยที่มีสระ123!@"
matches = re.finditer(regex, test_str, re.MULTILINE | re.UNICODE)
for matchNum, match in enumerate(matches, start=1):
print ("Match matchNum was found at start-end: match".format(matchNum = matchNum, start = match.start(), end = match.end(), match = match.group()))
for groupNum in range(0, len(match.groups())):
groupNum = groupNum + 1
print ("Group groupNum found at start-end: group".format(groupNum = groupNum, start = match.start(groupNum), end = match.end(groupNum), group = match.group(groupNum)))
# Note: for Python 2.7 compatibility, use ur"" to prefix the regex and u"" to prefix the test string and substitution.
演示
const regex = /([\u0E00-\u0E7F]+)/gmu;
const str = `engภาษาไทยที่มีสระ123!@`;
let m;
while ((m = regex.exec(str)) !== null)
// This is necessary to avoid infinite loops with zero-width matches
if (m.index === regex.lastIndex)
regex.lastIndex++;
// The result can be accessed through the `m`-variable.
m.forEach((match, groupIndex) =>
console.log(`Found match, group $groupIndex: $match`);
);
正则表达式
如果不需要此表达式,可以在 regex101.com 中修改或更改它。
正则表达式电路
jex.im 可视化正则表达式:
参考
Regular Expression to accept all Thai characters and English letters in python
【讨论】:
这让我有一个想法,但它不是我的愿望输出对不起 这是一个很好的答案。你有正常运行的代码。您已经看到了正则表达式如何工作的视觉效果。你有一个网站链接,可以让你调整正则表达式,直到它完全符合你的要求。如果这是 *** 奥运会,我是评委,我会给你的答案满分 10 分!以上是关于我如何检查字符串是返回布尔值的泰语,如 isalpha()的主要内容,如果未能解决你的问题,请参考以下文章