Help for this page

Select Code to Download


  1. or download this
    /\A   111 
      [.] 255 
      [.] ( \d | [1234]\d | 5[012345] )
      [.] ( \d | [1234]\d | 5[012345] )
    \z/x;
    
  2. or download this
    return 1 if 
      /\A 111 [.] 255 [.] (\d+) [.] (\d+) \z/x
      && $1 <= 55
      && $2 <= 55;