Find all the occurrences of a character in a string

后端 未结 7 566
情深已故
情深已故 2020-12-01 12:02

I am trying to find all the occurences of \"|\" in a string.

def findSectionOffsets(text):
    startingPos = 0
    endPos = len(text)

    for position in te         


        
7条回答
  •  自闭症患者
    2020-12-01 12:32

    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.

提交回复
热议问题