「JS入門」replace()で特定の文字列を置換する
JSコード
var cftA = "Apple is the fruit. There is a variety of apple"; var reStrB = /apple/gi; // 大文字/小文字の区別をしない var repStrC = "banana"; var kdf; kdf = cftA.replace(reStrB, repStrC);
Coding Changes the World
JSコード
var cftA = "Apple is the fruit. There is a variety of apple"; var reStrB = /apple/gi; // 大文字/小文字の区別をしない var repStrC = "banana"; var kdf; kdf = cftA.replace(reStrB, repStrC);