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:
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,"ä_");
text = text.replace(/ö/g,"ö_");
text = text.replace(/ü/g,"ü_");
text = text.replace(/Ü/g,"Ü_");
text = text.replace(/Ö/g,"Ö_");
text = text.replace(/Ä/g,"Ä_");
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(/ä_/g,"ä");
text = text.replace(/ö_/g,"ö");
text = text.replace(/ü_/g,"ü");
text = text.replace(/Ü_/g,"Ü");
text = text.replace(/Ö_/g,"Ö");
text = text.replace(/Ä_/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;
};