如何获得字符在Python中的位置?


Answers:


696

这有两个String的方法,find()index()。两者之间的区别在于找不到搜索字符串时会发生什么。 find()回报-1index()加薪ValueError

使用 find()

>>> myString = 'Position of a character'
>>> myString.find('s')
2
>>> myString.find('x')
-1

使用 index()

>>> myString = 'Position of a character'
>>> myString.index('s')
2
>>> myString.index('x')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: substring not found

Python手册

string.find(s, sub[, start[, end]])
返回s中找到子字符串sub的最低索引,使sub完全包含在中s[start:end]-1失败返回。开始结束以及负值的解释默认值与切片相同。

和:

string.index(s, sub[, start[, end]])
喜欢,find()但是ValueError在找不到子字符串时提高。


127

仅出于完整性考虑,如果需要查找字符串中字符的所有位置,可以执行以下操作:

s = 'shak#spea#e'
c = '#'
print [pos for pos, char in enumerate(s) if char == c]

它将返回 [4, 9]


4
在python3中,出现语法错误-应该如何修改?
肖恩

19
@Sean:打印语句已删除。仅保留功能形式。令人烦恼的是,但答案仅仅是将最后一行更改为: print( [pos for pos, char in enumerate(s) if char == c])
Nate

3
foo = ( [pos for pos, char in enumerate(s) if char == c])会将foo坐标以列表格式放置。我发现这确实有帮助
3nrique0

它的索引是0,相对于1234,它是0123,所以实际位置是5
3kstc

这样快吗?如果一个使用过np.arrays可以在长str上获得性能提升?
勒布

49
>>> s="mystring"
>>> s.index("r")
4
>>> s.find("r")
4

“长ed”方式

>>> for i,c in enumerate(s):
...   if "r"==c: print i
...
4

得到子串,

>>> s="mystring"
>>> s[4:10]
'ring'

1
谢谢告诉我如何根据给定的位置获取字符串的子字符串...
user244470 2010年

1
@arung:使用子切片来获取子字符串:str[from:to]where fromtoare index
Eli Bendersky 2010年

如果未找到子字符串,s.find()返回-1
Evgenii

找不到子字符串时,s.search()引发ValueError。如果未找到子字符串,则s.find()返回-1。
Praxiteles

16

只是为了完成,如果要在文件名中找到扩展名以进行检查,则需要找到最后一个“。”,在这种情况下,请使用rfind:

path = 'toto.titi.tata..xls'
path.find('.')
4
path.rfind('.')
15

就我而言,我使用以下命令,无论完整的文件名是什么,它都可以工作:

filename_without_extension = complete_name[:complete_name.rfind('.')]

这有助于查找字符串的范围。例如,查找字典可能是:left = q.find("{"); right = q.rfind("}")
ximiki

15

当字符串包含重复字符时会发生什么?从我的经验中,index()我看到重复的结果会返回相同的索引。

例如:

s = 'abccde'
for c in s:
    print('%s, %d' % (c, s.index(c)))

会返回:

a, 0
b, 1
c, 2
c, 2
d, 4

在这种情况下,您可以执行以下操作:

for i, character in enumerate(my_string):
   # i is the position of the character in the string

enumerate对这种事情更好。
o11c 2015年

10
string.find(character)  
string.index(character)  

也许您想看一下文档,找出两者之间的区别。


从该链接的文档中:未找到子字符串时,s.search()引发ValueError。如果未找到子字符串,则s.find()返回-1。
Praxiteles

7

一个字符可能在字符串中多次出现。例如,在字符串中sentence,位置eis是1, 4, 7(因为索引通常从零开始)。但是我发现这是两个函数,find()并且index()返回字符的第一个位置。因此,这样做可以解决此问题:

def charposition(string, char):
    pos = [] #list to store positions for each 'char' in 'string'
    for n in range(len(string)):
        if string[n] == char:
            pos.append(n)
    return pos

s = "sentence"
print(charposition(s, 'e')) 

#Output: [1, 4, 7]

1

more_itertools.locate 是一种第三方工具,用于查找满足条件的所有项目的索引。

在这里,我们找到字母的所有索引位置"i"

import more_itertools as mit


s = "supercalifragilisticexpialidocious"
list(mit.locate(s, lambda x: x == "i"))
# [8, 13, 15, 18, 23, 26, 30]

0

使用numpy的解决方案可以快速访问所有索引:

string_array = np.array(list(my_string))
char_indexes = np.where(string_array == 'C')

4
请不要使用此方法。没有理由将numpy带入简单的字符串索引操作中。
Mike Holler
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.