I have a list:
lis = {"20","ab","Cd","10","E"}
in which I would like to join adjacent elements if they are letters and not digits, to give:
res = {"20","abCd","10","E"}
Again thanks for any help!
I have a list:
lis = {"20","ab","Cd","10","E"}
in which I would like to join adjacent elements if they are letters and not digits, to give:
res = {"20","abCd","10","E"}
Again thanks for any help!