I am trying to find all the occurences of \"|\" in a string.
def findSectionOffsets(text): startingPos = 0 endPos = len(text) for position in te
The function:
def findOccurrences(s, ch): return [i for i, letter in enumerate(s) if letter == ch] findOccurrences(yourString, '|')
will return a list of the indices of yourString in which the | occur.
yourString
|