元の文字列.replace(文字列1,文字列2)
str = "Web for beginner"; document.write("置換え前の文字列", str); newWord = str.replace("beginner","senior"); document.write("置換え後の文字列", newWord);
Top / Home / Index / Next