Sort by

recency

|

296 Discussions

|

  • + 0 comments

    You are given a string consisting only of digits 0-9, commas ,, and dots .

    Your task is to complete the regex_pattern defined below, which will be used to re.split() all of the , and . symbols in .

    It’s guaranteed that every comma and every dot in is preceeded and followed by a digit.

    Sample Input 0

    100,000,000.000 Sample Output 0

    100 000 000 000

  • + 0 comments

    where to learn concept of regex completly

  • + 0 comments
    regex_pattern = r"[,.]"	# Do not delete 'r'.
    
    import re
    print("\n".join(re.split(regex_pattern, input())))
    
  • + 0 comments

    Here is HackerRank Re.split() in Python solution - https://programmingoneonone.com/hackerrank-re-split-problem-solution-in-python.html

  • + 0 comments

    *regexpattern = r"[,.]" *