Python - 去除字符串首尾填充

去除字符串首尾填充


本文地址: http://blog.csdn.net/caroline_wendy/article/details/20464251


Python中, 去除字符串首尾填充, 使用lstrip(), 去除左填充;rstrip(), 去除右端填充; strip(), 去除两端填充;

也可以指定填充去除, 注意只会去除首尾两端的填充, 以空格为标记;


代码如下:

# -*- coding: utf-8 -*-

#====================
#File: TextExercise.py
#Author: Wendy
#Date: 2014-03-04
#====================

#eclipse pydev, python2.7

x = '     hej     '
print('|' + x.lstrip() + '|' + x.rstrip() + '|' + x.strip() + '|')

y = 'xyxyyy hejxy  yyx'
print('|' + y.strip('xy') + '|') #只移除开头和结尾的xy


输出:

|hej     |     hej|hej|
| hejxy  |


Python - 去除字符串首尾填充_第1张图片

你可能感兴趣的:(python,strip,Mystra,去除填充)