RosettaCodeData/Task/Strip-control-codes-and-extended-characters-from-a-string/MATLAB/strip-control-codes-and-extended-characters-from-a-string.m
2023-07-01 13:44:08 -04:00

3 lines
70 B
Matlab

function str = stripped(str)
str = str(31<str & str<127);
end;