【说站】python截取字符串中特定部分
2024-11-11
9
python截取字符串中特定部分
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
1、截取特定长度的字符串。使用s[ : ],截取字符串中一段字符,遵循左闭右开原则,从0开始,到X-1结束。
s = "abcdefgh" #1、a range of characters 取一段字符 print(s[0:3]) #abc print(s[1:3]) #bc print("-----------") print(s[2:3]) #c print(s[3:3]) #None #2、with default parameters 缺省参数 print(s[3:]) #defgh print(s[:3]) #abc print(s[:]) #abcdefgh print("-----------") #3、with a step parameter 步长 print("This is not as common, but perfectly ok.") print(s[1:7:2]) #bdf 2是步长,即输出1、1+2、1+2+2 (1+2+2+2=7超出范围) print(s[1:7:3]) #be 3是步长,即输出1、1+3 (1+3+3=7超出范围)
2、根据指定的字符截取字符串,首先获得字符的下标记位置。
Python提供index函数,检查字符串是否包含子字符串,通常表现为特定字符、特定字符。
str1 = "Hello.python"; str2 = "."; print str1.index(str2);#结果5 print str1.index(str2, 2);#结果5 print str1.index(str2, 10);#结果报错,没找到子字符串 综合以上所述,按照字符截图示例str1 = "Hello.python"; str2 = "."; print str1.index(str2);#结果5 print str1[:str1.index(str2)] #获取 "."之前的字符(不包含点) 结果 Hello print str1[str1.index(str2):] ; #获取 "."之前的字符(包含点) 结果.python
以上就是python截取字符串中特定部分的方法,主要有截取特定长度和index函数两种方法可以实现,大家在看完内容介绍后,可以运行上方的实例代码部分。更多编程基础知识学习:python学习网
更新于:3天前赞一波!
相关文章
- 【说站】python如何读取大文件
- 【说站】python字典合并特性是什么
- 【说站】python字典合并有哪些规范?
- 【说站】python Faust流处理库的介绍
- 【说站】python如何建立web服务
- 【说站】python int返回的方法探究
- 【说站】Python中GC算法是什么
- 【说站】python逻辑值检测如何实现
- 【说站】python indent如何打印JSON数据
- 【说站】python如何追写内容
- 【说站】python的浮点数占多少个字节
- 【说站】python反向输出数字
- 【说站】python中__file__属性的使用
- 【说站】python输入三个数求平均值
- 【说站】python提取字符串指定内容
- 【说站】python将数字转化为汉字
- 【说站】python快捷键
- 【说站】python交换两个变量的值
- 【说站】python统计不同字符的个数
- 【说站】python三元操作符如何赋值
文章评论
评论问答