我有一个有时包含非 ascii 值的结果字符串。这些非 ascii 值会造成麻烦,因此我需要检查它们是否存在于结果字符串中。
我试过这两种方法
if (regexpi(result , ^\s\x{20}-\x{7e}))
display('non ascii');
end
和
if any(result < 128)
else
display('non ascii');
end
但它没有用。任何帮助是极大的赞赏。
我有一个有时包含非 ascii 值的结果字符串。这些非 ascii 值会造成麻烦,因此我需要检查它们是否存在于结果字符串中。
我试过这两种方法
if (regexpi(result , ^\s\x{20}-\x{7e}))
display('non ascii');
end
和
if any(result < 128)
else
display('non ascii');
end
但它没有用。任何帮助是极大的赞赏。