MATLAB: What’s the special symbol in a string

special symbol in string

I have a string like below:
Untitled.jpg
can anyone know what makes it become three lines? I need to remove it to become a normal string.
Thanks!
Yu

Best Answer

tmp(tmp < 32) = []
This remove all control characters, e.g. char(10), the line break.