gpt4 book ai didi

regex - 如何在 MATLAB 中将字符串解析为字母、数字等?

转载 作者:行者123 更新时间:2023-12-01 22:55:20 25 4
gpt4 key购买 nike

我在 MATLAB 中有一串字符 '12hjb42&34ni3&(*&'

我想通过正则表达式或其他一些更简单的方法来分隔数字和字母以及其他所有内容。我该怎么做?

最佳答案

不使用正则表达式,我认为使用函数 ISSTRPROP 会更容易:

str = '12hjb42&34ni3&(*&';                   %# Your sample string
alphaStr = str(isstrprop(str,'alpha')); %# Get the alphabetic characters
digitStr = str(isstrprop(str,'digit')); %# Get the numeric characters
otherStr = str(~isstrprop(str,'alphanum')); %# Get everything that isn't an
%# alphanumeric character

这会给你这些结果:

alphaStr = 'hjbni'
digitStr = '1242343'
otherStr = '&&(*&'

如果您真的想使用 REGEXP ,这是你可以做到的:

matches = regexp(str,{'[a-zA-Z]','\d','[^a-zA-Z\d]'},'match');
alphaStr = [matches{1}{:}];
digitStr = [matches{2}{:}];
otherStr = [matches{3}{:}];

关于regex - 如何在 MATLAB 中将字符串解析为字母、数字等?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4402281/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com