js转义特别符号
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js转义特别符号相关的知识,希望对你有一定的参考价值。
在php里,像 & + 这两个符号用AJax无法提交,用<form>submit就行,有人告诉我说要转义,我的做法var str=document.getElementById("ID").value; reg=/[&]/g; str=str.replace(reg,"&"); 请问这样的做法对吗?请高手给我例子
不用转,提交时加个编码即可,你获取str的时候给它编码一下就行了var str=document.getElementById("ID").value;str = encodeURIComponent(str);就上面这两句,你的replace啊什么的全都不用要,这个encodeURIComponent自会把所有特殊字符转义 参考技术A str=str.replace("&",""); str=str.replace("+",""); 参考技术B "fdsa[&]fda".replace(/\[\&\]/g,"&")C# 如何去掉string中所有转义字符(特殊符号)?
例如,"\b\0\0XXXX-AP\0\0\0\0\0\0"。取其中转义字符以外的部分(即XXXX-AP部分),该怎么取?转义字符的位置不能确定,种类也不固定。
PS:以上string是从byte[]转换来的。也可以在byte[]那一步下手。
byte[] ssid = (byte[])mo["Ndis80211SsId"];
string ssidString = Encoding.ASCII.GetString(ssid);
1、去掉字符串中的转义等特殊字符:
stringinputString=@”helloworld]\\“;
StringBuildersb=newStringBuilder();
string[]parts=inputString.Split(newchar[]’‘,‘\\n’,‘\\t’,‘\\r’,‘\\f’,‘\\v’,’\\’,StringSplitOptions.RemoveEmptyEntries);
intsize=parts.Length;
for(inti=0;i<size;i++);
sb.AppendFormat(“0“,parts[i]);
2、删除字符串头尾的转义等特殊字符串:
使用SubString和Remove来操作
比如去掉结尾的转义字符,可以使用
inputString.SubString(0,inputString.Length-1);
inputString.SubString(0,inputString.Length-2);
inputString.SubString(0,inputString.Length-3);
扩展资料
C#字符串取消转义字符的转义作用,使其正常显示
usingSystem;
usingSystem.Collections.Generic;
usingSystem.ComponentModel;
usingSystem.Data;
usingSystem.Drawing;
usingSystem.Linq;
usingSystem.Text;
usingSystem.Windows.Forms;
namespacetest1
publicpartialclassForm2:Form
publicForm2()
InitializeComponent();
privatevoidbutton1_Click(objectsender,EventArgse)
stringstr=@"D:\\document\\test.txt";
stringstr1="D:\\\\document\\\\test.txt";
MessageBox.Show(str+"---"+str1);
参考技术A using System.Linq;string st = "\b\0\0XXXX-AP\0\0\0\0\0\0";
string s = new string((from c in st.ToCharArray() where char.IsControl(c) select c).ToArray());本回答被提问者和网友采纳 参考技术B string st = "\b\\\0\0XXXX-AP\0\0\0\0\0\0";
st = st.Trim(new char[] '\'', '\"', '\\', '\0', '\a', '\b', '\f', '\n', '\r', '\t', '\v' ); 参考技术C -----------
-----------
这个我估计必须得把所有的转义字符先存起来,
然后再一个个来比较
以上是关于js转义特别符号的主要内容,如果未能解决你的问题,请参考以下文章