时间:2021-05-22
目的
获得一个首尾不含多余空格的字符串
方法
可以使用字符串的以下方法处理:
string.lstrip(s[, chars])
Return a copy of the string with leading characters removed. If chars is omitted or None, whitespace characters are removed. If given and not None, chars must be a string; the characters in the string will be stripped from the beginning of the string this method is called on.
string.rstrip(s[, chars])
Return a copy of the string with trailing characters removed. If chars is omitted or None, whitespace characters are removed. If given and not None, chars must be a string; the characters in the string will be stripped from the end of the string this method is called on.
string.strip(s[, chars])
Return a copy of the string with leading and trailing characters removed. If chars is omitted or None, whitespace characters are removed. If given and not None, chars must be a string; the characters in the string will be stripped from the both ends of the string this method is called on.
具体的效果如下:
复制代码 代码如下:
In [10]: x=' Hi,Jack! '
In [11]: print '|',x.lstrip(),'|',x.rstrip(),'|',x.strip(),'|'
| Hi,Jack! | Hi,Jack! | Hi,Jack! |
其中提供的参数chars用来删除特定的符号,注意空格并没有被移除,例如:
复制代码 代码如下:
In [12]: x='yxyxyxxxyy Hello xyxyxyy'
In [13]: print x.strip('xy')
Hello
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
jquery$.trim()去除字符串空格的实现方法【附图例】语法jQuery.trim()函数用于去除字符串两端的空白字符。作用该函数可以去除字符串开始和末尾
!去除字符串两端空格的处理如果采用传统的方式,就要可能就要采用下面的方式了//清除左边空格functionjs_ltrim(deststr){if(destst
使用字符串的方法:trim();去掉字符串两端空格split();切割string.join();连接复制代码代码如下:classProgram{staticv
去除字符串两端的空格,是字符串处理非常常用的方法,非常遗憾的是JavaScript没有这三个方法,只有我们自定义了:第1步,给String添加成员复制代码代码如
去除字符串左右两端的空格,在vbscript里面可以轻松地使用trim、ltrim或rtrim,但在js中却没有这3个内置方法,需要手工编写。下面的实现方法是用