Write a Regex to extract number before '/'

前端 未结 5 549
情话喂你
情话喂你 2021-01-29 06:08

I don\'t want to use string split because I have numbers 1-99, and a column of string that contain \'#/#\' somewhere in the text.

How can I write a regex to extract the

5条回答
  •  故里飘歌
    2021-01-29 07:01

    res = re.search('(\d+)/\d+', r'He got 10/19 questions right.')
    res.groups()
    ('10',)
    

提交回复
热议问题