如何在python中获取字符串中字符的位置?
答案 0 :(得分:594)
有两种字符串方法,find()
和index()
。两者之间的区别是找不到搜索字符串时发生的情况。 find()
返回-1
,index()
提升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
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)
地点:
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')