動的に入力されるテキストの文字列があります。すべての文字列には、「タイプ」という共通の単語が 1 つあります。変数として格納された文字列を指定して、javascript を使用して「type」という単語を見つけ、その前にダイビングを配置し、文字列の後に終了 div を配置したいと思います。そのようです:
var string = "Here is some text that contains the word type and more text after";
最終結果を次のようにしたいと思います。
Here is some text that contains the word <div>type and more text after</div>
これについてどうすればよいですか?
現在のコードは次のとおりです。
var wod = $("#wod a").attr("title");
var newwod = wod.replace("Copyright 2012, GB Blanchard - Learn Spanish: www.braser.com","");
//get ride of example and everythign after it
var finalwod = newwod.split("Example")[0];
var newstring = finalwod.replace(/(type.+)/,"<div>$1</div>");
$("#wod span").append(newstring);