• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

replace geht net

Status
Für weitere Antworten geschlossen.

aerox

Neues Mitglied
hallo,
ich möchte ein text umwandeln, der für GET
geeignet wäre!
Wenn es die funktion gibt, schreibt sie mir bitte,
wenn nich, ich zeige mal meine Taktik:

Code:
function Adjust_text(_string)
{
	text = _string;
	text = text.replace(/ä/g,"&auml_");
	text = text.replace(/ö/g,"&ouml_");
	text = text.replace(/ü/g,"&uuml_");
	text = text.replace(/Ü/g,"&Uuml_");
	text = text.replace(/Ö/g,"&Ouml_");
	text = text.replace(/Ä/g,"&Auml_");
	text = text.replace(/\\r\\n/g,"$br_");
	text = text.replace(/\\r/g,"$r_");
	text = text.replace(/\\n/g,"$n_");
	text = text.replace(/\"/g,"$gf_");
	text = text.replace(/\'/g,"$hk_");
	text = text.replace(/\&/g,"$und_");
	text = text.replace(/\=/g,"$gl_");
	text = text.replace(/\;/g,"$so_");
	return text;
};


function re_Adjust_text(_string)
{
	text = _string;
	text = text.replace(/&auml_/g,"ä");
	text = text.replace(/&ouml_/g,"ö");
	text = text.replace(/&uuml_/g,"ü");
	text = text.replace(/&Uuml_/g,"Ü");
	text = text.replace(/&Ouml_/g,"Ö");
	text = text.replace(/&Auml_/g,"Ä");
	text = text.replace(/$br_/g,"\r\n");
	text = text.replace(/$r_/g,"\r");
	text = text.replace(/$n_/g,"\n");
	text = text.replace(/$gf_/g,"\"");
	text = text.replace(/$hk_/g,"'");
	text = text.replace(/$und_/g,"&");
	text = text.replace(/$gl_/g,"=");
	text = text.replace(/$so_/g,";");
	return text;
};
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben