I have a cell array which contains strings like this :
Input = { 'BDCE'; 'BAFD'; 'HGAB' }
How can I change order of characters in each string in a cell array? The order is from 'A' to 'Z' The expected output should be like this :
Output = {'BCDE'; 'ABDF'; 'ABGH'}