RosettaCodeData/Task/Strip-control-codes-and-extended-characters-from-a-string/MATLAB/strip-control-codes-and-extended-characters-from-a-string.m
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

3 lines
70 B
Matlab

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