Skip commas inside brackets when the expression has operators
Show older comments
Hi all,
I am trying to split a string
"A(B,'C'),D(E,'F'),'==','G','H"
using strsplit so that I get these separately
A(B, 'C')
D(E, 'F')
'=='
'G'
'H'
Any help would be appreciated.
Dhanesh
1 Comment
J. Alex Lee
on 31 Mar 2022
Maybe look into regex or Matlab's new "patterns".
Answers (2)
Pravarthana P
on 4 Apr 2022
0 votes
Hi Dhanesh Kumar,
I understood that you are trying to split the string at commas except that within the brackets.
For example,
test = 'Ram,C,D,GH(cat,abc,6),,xyz';
regexp(test,'\w+(\([^)]+\))?', 'match')
Hope this helps you!!
Xingwang Yong
on 4 Apr 2022
expr1 = '(?<=\([^)]*),(?=.*\))'; % comma inside parenthesis, like '(..., ...)'
index_comma_in_paren = regexp(line, expr1);
Once I did this for my file exchange submission alignMatrix.m. Hope it helps.
Categories
Find more on Characters and Strings in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!