newstring = strrep(orgstring, word1,word2) strrep 함수는 orgstring에서 word1을 찾아서 word2로 바꾸어 newstring에 저장한다. 예제) str1 = 'lonesome';str2 = strrep(str1,'lone', 'awe'); 결과 str2 = 'awesome' STRREP Replace string with another. MODIFIEDSTR = STRREP(ORIGSTR,OLDSUBSTR,NEWSUBSTR) replaces all occurrences of the string OLDSUBSTR within string ORIGSTR with the string NEWSUBSTR. Notes: * STRREP accepts input co..