如何在Python中获取角色的位置?

时间:2010-02-19 06:32:57

标签: python string

如何在python中获取字符串中字符的位置?

10 个答案:

答案 0 :(得分:594)

有两种字符串方法,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 manual

  

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

  

string.index(s, sub[, start[, end]])
  与find()类似,但在找不到子字符串时会引发ValueError

答案 1 :(得分:97)

为了完整起见,如果您需要查找字符串中字符的所有位置,您可以执行以下操作:

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

将返回[4, 9]

答案 2 :(得分:46)

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

“啰嗦”的方式

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

获取子串,

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

答案 3 :(得分: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

答案 4 :(得分:14)

只是为了完成,如果我想在文件名中找到扩展名以便检查它,我需要找到最后一个&#39;。&#39;,在这种情况下使用rfind:

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

就我而言,我使用以下内容,无论完整的文件名是什么,都可以使用:

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

答案 5 :(得分:11)

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

也许您想查看the documentation,了解两者之间的区别。

答案 6 :(得分:3)

一个字符可能在字符串中多次出现。例如,在字符串sentence中,e的位置为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]

答案 7 :(得分:1)

如果您想找到第一个匹配项。

Python 有一个内置的字符串方法来完成这项工作:index()

string.index(value, start, end)

地点:

  • 值:(必需)要搜索的值。
  • start:(可选)从哪里开始搜索。默认为 0。
  • end:(可选)结束搜索的位置。默认为字符串的结尾。
def character_index():
    string = "Hello World! This is an example sentence with no meaning."
    match = "i"
    return string.index(match)
        
print(character_index())
> 15

如果您想查找所有匹配项。

假设您需要字符 match 所在的所有索引,而不仅仅是第一个。

pythonic 的方式是使用 enumerate()

def character_indexes():
    string = "Hello World! This is an example sentence with no meaning."
    match = "i"

    indexes_of_match = []

    for index, character in enumerate(string):
        if character == match:
            indexes_of_match.append(index)
    return indexes_of_match

print(character_indexes())
# [15, 18, 42, 53]

或者使用列表理解更好:

def character_indexes_comprehension():
    string = "Hello World! This is an example sentence with no meaning."
    match = "i"

    return [index for index, character in enumerate(string) if character == match]


print(character_indexes_comprehension())
# [15, 18, 42, 53]

答案 8 :(得分:0)

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]

答案 9 :(得分:-2)

带有numpy的解决方案,可快速访问所有索引:

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