python find all character index in string code example
Example 1: how to get all index of a char of a string in python
word = 'Hello'
to_find = 'l'
print([i for i, x in enumerate(word) if x == to_find])
Example 2: how to find the indexes of a substring in a string in python
import re
matches_start = re.finditer(word.lower(), string.lower())
matches_position_start = [match.start() for match in matches_start]
matches_end = re.finditer(word.lower(), string.lower())
matches_position_end = [match.end() for match in matches_end]