系统城装机大师 - 固镇县祥瑞电脑科技销售部宣传站!

当前位置:首页 > 脚本中心 > python > 详细页面

Python 去除字符串中指定字符串

时间:2020-03-05来源:电脑系统城作者:电脑系统城

1、背景

最近的项目中,再次踩到Python字符串处理的坑,决定把此次解决方案记录一下,以勿踩坑。

2、遇到坑

原本字符串:大坪英利国际8号楼88-88号重庆汉乔科技有限公司大坪英利国际8号楼
去除最左边的字符串:大坪英利国际8号楼
预期结果:88-88号重庆汉乔科技有限公司大坪英利国际8号楼

自然而然,第一个想到的就是lstrip()函数。

Python中lstrip() 方法用于截掉字符串左边的空格或指定字符。
但实际上结果:

lstrip: -88号重庆汉乔科技有限公司大坪英利国际8号楼

3、找到 lstrip() 坑的真相

函数原型:


 
  1. def lstrip(self, chars=None): # real signature unknown; restored from __doc__
  2. """
  3. S.lstrip([chars]) -> str
  4.  
  5. Return a copy of the string S with leading whitespace removed.
  6. If chars is given and not None, remove characters in chars instead.
  7. """
  8. return ""

看来 lstrip 方法是 比对字符 并去除,而不是简单的去除最左边字符串。
那好,再验证一下:


 
  1. "重庆重庆师范大学".lstrip("重庆")

结果:

师范大学

那我想简单的去除字符串中的首个指定字符串,最好不用 lstrip() 了。
于是又想到了split 方法 和 replace 方法……

4、解决方案

4.1、方法1 split

函数原型:


 
  1. def split(self, instring, maxsplit=_MAX_INT, includeSeparators=False):
  2. """
  3. Generator method to split a string using the given expression as a separator.
  4. May be called with optional C{maxsplit} argument, to limit the number of splits;
  5. and the optional C{includeSeparators} argument (default=C{False}), if the separating
  6. matching text should be included in the split results.
  7.  
  8. Example::
  9. punc = oneOf(list(".,;:/-!?"))
  10. print(list(punc.split("This, this?, this sentence, is badly punctuated!")))
  11. prints::
  12. ['This', ' this', '', ' this sentence', ' is badly punctuated', '']
  13. """
  14. splits = 0
  15. last = 0
  16. for t,s,e in self.scanString(instring, maxMatches=maxsplit):
  17. yield instring[last:s]
  18. if includeSeparators:
  19. yield t[0]
  20. last = e
  21. yield instring[last:]

4.2、方法2 replace

函数原型:


 
  1. def replace(self, old, new, count=None):
  2. """
  3. For each element in `self`, return a copy of the string with all
  4. occurrences of substring `old` replaced by `new`.
  5.  
  6. See also
  7. --------
  8. char.replace
  9.  
  10. """
  11. return asarray(replace(self, old, new, count))

5、案例

5.1、源代码


 
  1. # -*- coding: utf-8 -*-
  2. """
  3. Author: ZhenYuSha
  4. CreateTime: 2020-2-26
  5. Info: 去除字符串中 首个指定字符串
  6. """
  7.  
  8.  
  9. def run(source, key):
  10. tmp_ls = source.lstrip(key)
  11. tmp_re = source.replace(key, "", 1)
  12. tmp_sp = source.split(key, 1)[1]
  13. return tmp_ls, tmp_re, tmp_sp
  14.  
  15.  
  16. if __name__ == '__main__':
  17. tmp_1, tmp_2, tmp_3 = run("大坪英利国际8号楼88-88号重庆汉乔科技有限公司大坪英利国际8号楼", "大坪英利国际8号楼")
  18. print("test_1 lstrip:", tmp_1)
  19. print("test_1 replace:", tmp_2)
  20. print("test_1 split:", tmp_3)
  21.  
  22. tmp_1, tmp_2, tmp_3 = run("重庆重庆师范大学", "重庆")
  23. print("test_2 lstrip:", tmp_1)
  24. print("test_2 replace:", tmp_2)
  25. print("test_2 split:", tmp_3)

5.2、效果

Python 去除字符串中指定字符串

6、延伸

split 和 replace 可以解决字符串首个指定字符串去除问题, 但去除字符串这个问题不仅仅是去除就完了,还要去判断是否符合我们的要求。

6.1、看字符串开头是否是指定字符串

如果需要以指定字符串开头,要用 startswith 函数来判断。

6.2、看字符串中是否存在指定字符串

如果不存在指定字符串,直接用 split 和 replace 会直接崩溃的,那就需要 find 函数来查看了。

到此这篇关于Python 去除字符串中指定字符串的文章就介绍到这了,更多相关Python 去除字符串 内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!

分享到:

相关信息

系统教程栏目

栏目热门教程

人气教程排行

站长推荐

热门系统下载