发布网友 发布时间:2022-04-23 10:53
共4个回答
热心网友 时间:2022-04-06 05:58
去掉前后空格一般使用trim方法处理
1
2
String s = " abd ";
System.out.println(s.trim());
trim无法去除中间空格
去掉某字符,使用替换操作replaceAll
热心网友 时间:2022-04-06 07:16
String.prototype.trim=function()
{
return this.replace(/(^\s*)(\s*$)/g, ”);
}
运用示例如下:
<script type=”text/javascript”>
alert(document.getElementById(’abc’).value.trim());
</script>
热心网友 时间:2022-04-06 08:51
tring.prototype.trim=function() { return this.replace(/(^\s*)(\s*$)/g, ”); }
热心网友 时间:2022-04-06 10:42
String.prototype.trim=function()
{
return this.replace(/(^\s*)(\s*$)/g, ”);
}
运用示例如下:
<script type=”text/javascript”>
alert(document.getElementById(’abc’).value.trim());
</script>