re.start & re.end - Regular Expressions - HackerRank - #12 - Python Practice Examples

Опубликовано: 22 Октябрь 2024
на канале: Interview Coder
753
7

This Challange is to test the logic of re.start() and re.end() in HackerRank.
start() & end()
These expressions return the indices of the start and end of the substring matched by the group.

Code

import re
m = re.search(r'\d+','1234')
m.end()
4
m.start()
0

=============================================================
Join :
  / jagwithyou  
  / jagwithyou  
https://github.com/jagwithyou

#CompetitiveProgramming #TWP