Flask基础知识--字符串常用操作
假设有语句:mystr = 'hello world !love or like the world'
1.find. 检测 str 是否包含在 mystr中,如果是返回开始的索引值,否则返回-1
语法:mystr.find(str, start=0, end=len(mystr))
'hello world !love or like the world' > mystr =
"world", 0, -1) > mystr.find(
6
2.index. 跟find()方法一样,只不过如果str不在 mystr中会报一个异常.
语法:
mystr.index(str, start=0, end=len(mystr))
'hello world !love or like the world' > mystr =
"love",0 ,30) > mystr.index(
13
3. count. 返回 str在start和end之间 在 mystr里面出现的次数
语法:
mystr.count(str, start=0, end=len(mystr))
'hello world !love or like the world' > mystr =
"world") > mystr.count(
2
4.replace.
把 mystr 中的 str1 替换成 str2,如果 count 指定,则替换不超过 count 次.
语法:
mystr.replace(str1, str2, mystr.count(str1))
'hello world !love or like the world' > mystr =
"world", "baby",2) > mystr.replace(
'hello baby !love or like the baby'
5.split.
以 str 为分隔符切片 mystr,如果 maxsplit有指定值,则仅分隔 maxsplit 个子字符串。
语法:mystr.split(str, maxsplit)
'hello world !love or like the world' > mystr =
"world",2) > mystr.split(
['hello ', ' !love or like the ', '']
6. capitalize. 把字符串的第一个字符大写
语法:mystr.capitalize()
'hello world !love or like the world' > mystr =
> mystr.capitalize()
'Hello world !love or like the world'
7.title. 把字符串的每个单词首字母大写
语法:mystr.title()
'hello world !love or like the world' > mystr =
> mystr.title()
'Hello World !Love Or Like The World'
8.startswith().
检查字符串是否是以 obj 开头, 是则返回 True,否则返回 False
语法:mystr.startswith(obj)
'hello world !love or like the world' > mystr =
"hello") > mystr.startswith(
True
"Hello") > mystr.startswith(
False
9.endswith(). 检查字符串是否以obj结束,如果是返回True,否则返回 False.
语法:mystr.endswith(obj)
'hello world !love or like the world' > mystr =
"rld") > mystr.endswith(
True
10.lower. 转换 mystr 中所有大写字符为小写
语法:mystr.lower()
"HELLO WORLD !LOVE OR LIKE THE WORLD" > mystr =
> mystr.lower()
'hello world !love or like the world'
11.upper. 转换 mystr 中的小写字母为大写
语法:mystr.upper()
'hello world !love or like the world' > mystr =
> mystr.upper()
'HELLO WORLD !LOVE OR LIKE THE WORLD'
12.ljust. 返回一个原字符串左对齐,并使用空格填充至长度 width 的新字符串
语法:mystr.ljust(width)
"hello world !love or like the world" > mystr =
40) > mystr.ljust(
'hello world !love or like the world '
13.rjust. 返回一个原字符串右对齐,并使用空格填充至长度 width 的新字符串
语法:mystr.rjust(width)
"hello world !love or like the world" > mystr =
40) > mystr.rjust(
' hello world !love or like the world'
14.center. 返回一个原字符串居中,并使用空格填充至长度 width 的新字符串
语法:mystr.center(width)
"hello world !love or like the world" > mystr =
40) > mystr.center(
' hello world !love or like the world '
15.lstrip. 删除 mystr 左边的空白字符
语法:mystr.lstrip()
" hello world !love or like the world" > mystr =
> mystr.lstrip()
'hello world !love or like the world'
16.rstrip. 删除 mystr 右边的空白字符
语法:mystr.rstrip()
"hello world !love or like the world " > mystr =
> mystr.rstrip()
'hello world !love or like the world'
17.strip. 删除mystr字符串两端的空白字符
语法:mystr.strip()
" hello world !love or like the world " > mystr =
> mystr.strip()
'hello world !love or like the world'
18.rfind. 类似于 find()函数,不过是从右边开始查找.
语法:mystr.rfind()
'hello world !love or like the world' > mystr =
'world') > mystr.rfind(
30
19.rindex. 类似于 index(),不过是从右边开始.
语法:mystr.rindex()
'hello world !love or like the world' > mystr =
"and") > mystr.rindex(
Traceback (most recent call last):
File "<pyshell#33>", line 1, in <module>
mystr.rindex("and")
ValueError: substring not found
20.partition. 把mystr以str分割成三部分,str前,str和str后
语法:mystr.partition(str)
'hello world !love or like the world' > mystr =
"world") > mystr.partition(
('hello ', 'world', ' !love or like the world')
21.rpartition. 类似于 partition()函数,不过是从右边开始.
语法:mystr.rpartition()
'hello world !love or like the world' > mystr =
"world") > mystr.rpartition(
('hello world !love or like the ', 'world', '')
22.splitlines. 按照行分隔,返回一个包含各行作为元素的列表
语法:mystr.splitlines()
"hello world \n love or \n like world" > mystr =
> mystr.splitlines()
['hello world ', ' love or ', ' like world']
23.isalpha. 如果 mystr 所有字符都是字母 则返回 True,否则返回 False
语法:mystr.isalpha()
'hello world love or like the world' > mystr =
> mystr.isalpha()
False
"hello" > mystr =
> mystr.isalpha()
True
24.isdigit. 如果 mystr 只包含数字则返回 True 否则返回 False.
语法:mystr.isdigit()
"12345" > mystr =
> mystr.isdigit()
True
25.isalnum.如果 mystr 所有字符都是字母或数字则返回 True,否则返回 False
语法:mystr.isalnum()
"1234hello" > mystr =
> mystr.isalnum()
True
26.isspace. 如果 mystr 中只包含空格,则返回 True,否则返回 False.
语法:mystr.isspace()
" haha" > mystr =
> mystr.isspace()
False
27.join. mystr 中每个字符后面插入str,构造出一个新的字符串
语法:mystr.join(str)
"_" > mystr =
"hello","world","love","you"] > li = [
> mystr.join(li)
'hello_world_love_you'
Q: 给定一个字符串mystr,返回使用空格或者'\t'分割后的倒数第二个子串
mystr = "helle world \t love you \t and the world \t hei hei"