6 kyu

Regexp Basics - is it IPv4 address?

224 of 2,746taw
Description
Loading description...
Regular Expressions
Fundamentals
  • Please sign in or sign up to leave a comment.
  • saudiGuy Avatar

    python new test framework is required. updated in this fork

  • ejini战神 Avatar

    assertTrue && assertFalse should be used for fixed test of PHP

  • farhanaditya Avatar

    JS: Node v14 should be used along with its appropiate assertion tools (Mocha + Chai). Refer to this and this

  • farhanaditya Avatar

    I think regex should be enforced.

  • akar-0 Avatar

    It seems this kata is a duplicate of this one. I copied/pasted my solution from it and it worked with only changing the name of the function and variable.

  • Karan-Ghatt Avatar

    This comment has been hidden.

  • mjsspencer Avatar

    This kata made me realise a subtle difference in 2 related components of regular expressions so thank you for that. May I suggest though that for Ruby you make outputs - beyond the first output that fails - visible, I would've solved the kata in a fraction of the time had that been the case. I was basically having to guess what the problem was.

  • maxpaton Avatar

    Having a problem with the '127.0.0.1\n' test. I removed the '\n' and it still has an error. All other tests passed

  • rrogerthat Avatar

    Is this question best with regex? Found the tests to contain different characters you have to account for. It's always the edge cases we have code wars with!

  • jzkarap Avatar

    This comment has been hidden.

  • Anell Zheng Avatar

    This comment has been hidden.

  • Anell Zheng Avatar

    This comment has been hidden.

  • Anell Zheng Avatar

    This comment has been hidden.

  • wolfenstein11x Avatar

    This comment has been hidden.

  • PuntedGnome Avatar

    My regex-fu is weak! I had to elif my way out of the box and bookmark it for further study and practice. Any suggestions on regex sources other than the python.org documentation? They apparently ain't working for me.

    Good kata, by the way.

  • dalward Avatar

    This comment has been hidden.

  • bestwebua Avatar

    Thank you so much for the great regex kata!!! Regex will add a lot of power and efficiency!!!

  • hvozdulych Avatar

    What is the 83th test case?

  • ekamaks Avatar

    PHP translation Kumited! Please check and approve)

  • Javatlacati Avatar

    CoffeeScript Translation Kumited! Please Accept :D

  • Javatlacati Avatar

    What's wrong with my solution? It always time out and don¿t even gets salved :(

  • stuxnet Avatar

    You have a test to assert '127.0.0.1' to true and other to false, in Ruby...

  • diverger Avatar

    All basic test passed, but in "Random Test" it gives: name 'xrange' is not defined. But I'm not using 'xrange', it seems the test is write with Python 2, but I'm using Python 3, right?

  • Evgen123 Avatar

    in JavaScript how can I get the string with IP?

  • codeSavvy69 Avatar

    I think I'm having trouble with the test cases

  • donaldsebleung Avatar

    Thanks a lot for this Kata, I'm fairly new to Regex and this has taught me how to shorten and simplify regexes as well as allowing repeats :D

  • hilary Avatar

    This comment has been hidden.

  • leonoverweel Avatar

    This comment has been hidden.

  • NateBrady23 Avatar

    Most of the solutions would fail for 127.0.0.1. Trailing . is not a valid IP format. I would throw in a test case for that.

  • brunolm Avatar

    I also think it is a duplicate of IP validation.

    But maybe it could be a different Kata if you make the use o Regex mandatory.

    In JavaScript you can .toString the function and check the code. In C# you can do that with reflection, in other languages there might be some ways to do that.

  • zoid Avatar

    Nice kata, differs from other that dont accept leading zeros.

  • GiacomoSorbi Avatar

    Wow, you certainly were fast in approving my translations :D

    If I might add something, really nice testing suite you got under the hood for a beginner level kata :)