strip

简介:
用于移除字符串头尾指定的字符(默认为空格)
Help on built-in function strip:
str.strip([chars])  移除字符串头尾指定的字符
strip(...) method of builtins.str instance
    S.strip([chars]) -> str
    
    Return a copy of the string S with leading and trailing
    whitespace removed.
    If chars is given and not None, remove characters in chars instead.


#!/usr/bin/python3

str = "*****this is string example....wow!!!*****"
print (str.strip( '*' ))
 
 
this is string example....wow!!!
目录
相关文章
|
5月前
|
存储 设计模式 算法
《500 Lines or Less》(13)—— A 3D Modeller
《500 Lines or Less》(13)—— A 3D Modeller
82 18
Python中strip()、lstrip()和rstrip()方法的区别与用法详解
在Python中,字符串是一种常见的数据类型,而处理字符串时,经常会用到 strip()、lstrip() 和 rstrip() 这几个方法。它们都用于删除字符串开头和/或结尾的指定字符或字符集合,但在具体使用时有一些区别。
|
6月前
strip()
strip()
104 0
|
6月前
rstrip()
rstrip()
28 0
|
11月前
replace、replaceAll、replaceFirst
replace、replaceAll、replaceFirst
57 0
|
Python
Python:字符串基操_strip()/rstrip()/lstrip()_lower()/upper()_startswith()/endswith()_split()/rspilt()_join
Python:字符串基操_strip()/rstrip()/lstrip()_lower()/upper()_startswith()/endswith()_split()/rspilt()_join
221 0
Python3中strip()、lstrip()、rstrip()用法详解
Python3中strip()、lstrip()、rstrip()用法详解
split
split
75 0
|
PHP
str_replace() 和 strpos()
str_replace() 和 strpos()
114 0
str_replace() 和 strpos()
|
Python
Python 字符串切割 str.split()和re.split()
Python 字符串切割 str.split()和re.split()
279 0