Remove parenthesis and the contents inside from a string
显示 更早的评论
Is there a neat way to remove a parenthesis and the contents inside from a string. For example the string
A = 'abc (ABC)'
% how to extract 'abc' from A, get rid of ' (ABC)' including the leading whitespace?
One cumbersome solution is:
temp = strsplit(A,'(');
B = strtrim(temp(1));
采纳的回答
更多回答(1 个)
KSSV
2021-1-7
A = 'abc (ABC)' ;
idx = strfind(A,' (') ;
iwant = A(1:idx-1)
类别
在 帮助中心 和 File Exchange 中查找有关 Characters and Strings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!