全ての文字列を置換する【javascript】

トップ】 【じんじんのいろいろ日記】 【カテゴリーサイトマップ

スポンサードリンク

【じんじん】
2024年12月10日
17時50分25秒

全ての文字列を置換する【javascript】
//text中のs1を全てs2に置換する。
function mojichikann( text‚s1‚s2 )
{
if(text==null||s1==null||s2==null)
{
alert("nullは置換できません");
}
let loopflg = 0;
while( loopflg == 0 )
{
let textold = text;
text = text.replace( s1‚ s2 );
if(textold == text)
{
loopflg = 1;
}
}
return text;
}