MATLAB: Remove the first five letters of a string

strings

how to remove the first five letters of a string? whatever be the lenght of the string the first 5 letters should be removed and only the remaining should be saved in a variable…. please do reply

Best Answer

str = str(6:end);