python去除字串空格的方法

2021-10-05 00:00:00 字數 702 閱讀 3477

1、strip():去除開頭/結尾的空格

a = ' a b c '

a.strip()

# 'a b c'

2、lstrip():去除起始處空格

a = ' a b c '

a.lstrip()

# 'a b c '

3、rstrip():去除結尾處空格

a = ' a b c '

a.rstrip()

# ' a b c'

4、replace()方法:替換字串,replace(old,new,count)

a = ' a b c '

a.replace(' ', '')

# 'abc'

5、split()+join():

split():分割--得到列表

join():連線--列表各個元素的連線

a = ' a b c '

#分步計算

alist = a.split(' ')

astring = ''.join(alist)

print astring

#整體運算

print "".join(a.split(' '))

#'abc'

js去除字串空格

方法一 使用replace正則匹配的方法 去除所有空格 str str.replace s g,去除兩頭空格 str str.replace s s g,去除左空格 str str.replace s 去除右空格 str str.replace s g,str為要去除空格的字串,例項如下 var s...

js去除字串空格?

方法一 使用replace正則匹配的方法 去除所有空格 str str.replace s g,去除兩頭空格 str str.replace s s g,去除左空格 str str.replace s 去除右空格 str str.replace s g,str為要去除空格的字串,例項如下 var s...

去除字串中間空格

經常會遇到這樣的問題 使用ssm框架或者其他框架的時候,存入到資料庫之前會將資料去除空格然後再存入,不然的話顯示的時候或者在儲存的時候會有問題。做法 如果是單純的去除前後空格的話,可以使用trim 函式,但是中間空格是不可以去除的,有沒有什麼做法可以將中間的空格也去除呢?答案是可以 使用正規表示式 ...