I have a list of strings:
lis = {"a","1","c","ef","g","2"}
and would like to join all adjacent non-numeric characters to produce:
res = {"a","1","cefg","2"}
Thanks for advice...
I have a list of strings:
lis = {"a","1","c","ef","g","2"}
and would like to join all adjacent non-numeric characters to produce:
res = {"a","1","cefg","2"}
Thanks for advice...