Hallo H²O,
Aber, wie soll ich das machen. Er muss das "Hallo" finden und das dahinter muss er ausschneiden. Kein Problem. Außer man schreibt noch etwas davor. Dann würde er von dem folgenden Wort nicht mehr alles interpretieren.
Wie soll ich eigentlich rauskriegen, wie groß das Wort nach "Hallo" ist.
Das brauchst Du gar nicht:
var text = "bla Hallo H²O!";
var neu = text.replace(/Hallo/, "Hi"); // Findet Hallo und ersetzt es durch Hi
http://selfhtml.teamone.de/javascript/objekte/string.htm#replace
Grüße
Andreas
--
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning."
(Rich Cook)
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning."
(Rich Cook)