regex substitution - Regular Expressions - HackerRank - #13 - Python Practice Examples

Опубликовано: 09 Май 2020
на канале: Interview Coder
468
5

This Challange is to test the logic of regex substitution in HackerRank.

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



Hint:
The re.sub() tool (sub stands for substitution) evaluates a pattern and, for each valid match, it calls a method (or lambda).
The method is called for all matches and can be used to modify strings in different ways.
The re.sub() method returns the modified string as an output.

Learn more about .

Transformation of Strings

Code

import re

#Squaring numbers
def square(match):
number = int(match.group(0))
return str(number**2)

print re.sub(r"\d+", square, "1 2 3 4 5 6 7 8 9")
Output

1 4 9 16 25 36 49 64 81


#CompetitiveProgramming #TWP


На этой странице сайта вы можете посмотреть видео онлайн regex substitution - Regular Expressions - HackerRank - #13 - Python Practice Examples длительностью часов минут секунд в хорошем качестве, которое загрузил пользователь Interview Coder 09 Май 2020, поделитесь ссылкой с друзьями и знакомыми, на youtube это видео уже посмотрели 468 раз и оно понравилось 5 зрителям. Приятного просмотра!