strip去掉首尾空格和指定字元Python

2021-10-08 21:32:19 字數 626 閱讀 5135

# coding = utf-

8# 建立乙個字串hello_world

hello_world =

' **the world ** is big!* '

# 利用strip

()方法處理hello_world字串

blank_hello_world = hello_world.

strip()

char_hello_world = hello_world.

strip

('th *'

)# 列印輸出轉換後的字串

print

(blank_hello_world)

print

(char_hello_world)

輸出結果:

**the world *

* is big!

* he world *

* is big!

輸出結果分析:

從第一行列印結果可以看到,strip() 方法去除了源字串首尾的所有空格,但是並沒有去除字串中間的空格;從第二行列印結構可以看出,strip() 方法將源字串首尾所有空格、*以及字元t去掉了。而源字串中頭部的h因為是小寫並沒有去除。

js中去掉字元中間空格和首尾空格

1 去掉字串前後所有空格 如下 1 234functiontrim str 說明 如果使用jquery直接使用 trim str 方法即可,str表示要去掉前後所有空格的字串。2 去掉字串中所有空格 包括中間空格,需要設定第2個引數為 g 如下 1 2345 6789 10functiontrim ...

C 去掉字串中首尾空格和所有空格

去掉首尾空格 void trim string s 去掉所有空格 void trim string s int index 0 if s.empty 去除多餘空格 思路就是定義兩個指標next和tail,乙個在前面尋找非空格的字元,另外乙個在後面一步一步移動,把後面的字元全部轉移到前面來 然後為了去...

去掉字串首尾指定的字元

話不多說直接上 去掉字串頭尾指定字元 param source 需要處理的字串 param element 指定字元 return public static string trimfirstandlastchar string source,char element while begininde...