有谁知道如何在 matlab 中检测非 ASCII 字符。
我想通过正则表达式检测非 ASCII 字符的存在
if (regexpi('hello world%^&%','![A-Z]*'))display('You have non ascii characters')
但它似乎不起作用
更新:-
if (regexpi('hello word','^[A-Za-z0-9]*'))
display('You have chosen to overwrite!');
end
显示您已选择覆盖!