formatstring.asp
来自「Computer SHOP+DATABASE」· ASP 代码 · 共 45 行
ASP
45 行
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<%
function FormatString(str)
{
while(str.indexOf('\n') != -1 )
{
str = str.replace("\n","<br>");
}
while (str.indexOf('\"') != -1)
{
str = str.replace('\"','"');
}
while (str.indexOf("\'") != -1)
{
str = str.replace("\'","´");
}
return str;
}
<!--------------------------------------------------------------------------------------->
function deFormatString(str)
{
while(str.indexOf('<br>') != -1 )
{
str = str.replace("<br>","\n");
}
while (str.indexOf(""") != -1)
{
str = str.replace('"','\"');
}
while (str.indexOf("´") != -1)
{
str = str.replace("´","\'");
}
return str;
}
%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?