lua怎么判断字符串中含有汉字

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了lua怎么判断字符串中含有汉字相关的知识,希望对你有一定的参考价值。

一、判断字符串中包含中文字符的方法

遍历数组,对每个字节使用string.byte(),发现有大于127的,就是汉字,可以参照下面的代码。

二、计算字符串宽度函数
计算字符串宽度

local str = "Jimmy: 你好,世界!"
local fontSize = 20
local lenInByte = #str
local width = 0

for i=1,lenInByte do
local curByte = string.byte(str, i)
local byteCount = 1;
if curByte>0 and curByte<=127 then
byteCount = 1
elseif curByte>=192 and curByte<223 then
byteCount = 2
elseif curByte>=224 and curByte<239 then
byteCount = 3
elseif curByte>=240 and curByte<=247 then
byteCount = 4
end

local char = string.sub(str, i, i+byteCount-1)
i = i + byteCount -1

if byteCount == 1 then
width = width + fontSize * 0.5
else
width = width + fontSize
print(char)
end
end

print("总宽度: "..width)
参考技术A a='hgsadg我们hdsfk'
l=strlen(a)
for i=1,l do
asc2=strbyte(strsub(a,i,i))
if asc2>127 then
print('可能是汉字')
else
print(strchar(asc2))
end
end

追答

注:lua4的脚本。若是lua5,请在内部函数之前加上'string.'

本回答被提问者采纳

PHP中判断字符串是否含有中文

<?php 

/**
 * 【1.测试一】
 * 当$str = ‘中文测试‘; 时输出"全部是汉字";当$str = ‘中a文3测试‘; 时输出"不全是汉字";
 * 应用说明:当某个地方要求用户输入的内容必须全部是中文时,这个就派上用场了。
 */
$str = ‘中文测试‘;
if (preg_match_all("/^([\x81-\xfe][\x40-\xfe])+$/", $str, $match)) {
    echo ‘全部是汉字‘;
} else {
    echo ‘不全是汉字‘;
}


/**
 * [2.测试二]
 * 当$str = ‘中a文3测试‘; 时输出"含有汉字";当$str = ‘a345‘; 时输出"不含有汉字";
 * 应用说明:当某个地方要求用户输入的内容中必须含有中文时(而不一定全部是中文),这个就派上用场了。
 * 经测试,上述变量$str的内容与utf8还是gbk编码无关,判断结果均是一样的。
 */
$str = ‘中a文3测试‘;
if (preg_match("/([\x81-\xfe][\x40-\xfe])/", $str, $match)) {
    echo ‘含有汉字‘;
} else {
    echo ‘不含有汉字‘;
}


/**
 * 判断全是中文
 */
$str="‘324是";
if(!eregi("[^\x80-\xff]","$str")){
    echo "全是中文";
}else{
    echo "不是";
}

/**
 * 判断含有中文 (方法1)
 */
$str = "中文";
if (preg_match("/[\x7f-\xff]/", $str)) {
    echo "含有中文";
}else{
    echo "没有中文";
}
/**
 * 判断含有中文 (方法2)
 */
$pattern = ‘/[^\x00-\x80]/‘;
if(preg_match($pattern,$str)){
    echo "含有中文";
}else{
    echo "没有中文";
}

/**
 * 【php过滤汉字和非汉字】
 */
$sc="aaaaaaaaaaaaaadddd.......##--__i汉子汉字过滤";
//iconv("UTF-8","GB2312",$sc);utf-8转码
echo $temp=eregi_replace("[^\x80-\xff]","",$sc);    //保留汉字(过滤非汉字)
echo $temp=preg_replace("/[\\x80-\\xff]/","",$sc);     //保留非汉字(过滤汉字),注意两条反斜线

 

以上是关于lua怎么判断字符串中含有汉字的主要内容,如果未能解决你的问题,请参考以下文章

lua 写一个函数,传入一个字符串,怎么判断字符串中是不是有中文?

判断字符串中是不是含有中文

java判断字符串中是否含有汉字

如何用正则表达式判断文本中包含有汉字

C#-判断字符中是否含有汉字的两种方法,并提取汉字

iOS判断字符串中含不含有汉字