Test yourself-5


Hello Folks....!!!

Test yourself on the re package.

Q1. User form validation :
  • Get user's name as input. The constrain is only alphabets are allowed. If any other character or number is given as input raise error message and get a valid input again.
  • Get user's mobile number and verify whether only 10 digits are entered.
  • Get a user name for them.
  • Get a password and check whether it satisfies the following conditions :
    1. At least 1 letter between [a-z] and 1 letter between [A-Z].
    2. At least 1 number between [0-9].
    3. At least 1 character from [$#@].
    4. Minimum length 6 characters.
    5. Maximum length 16 characters.

Q2. Given a passage split at the places where 2 digit numerals are followed by a\e\i\o\u.

passage : Dogs were probably the first34 tame678 animals.Scientists generally agree that all dogs, domestic213 and wild, share a567 common wolf ancestor; at789 some point grey2 wolves2 and dogs went45 on their23456 separate432 evolutionary ways.


Q3. Given a string, replace the @\#\% symbols with space.

String : The@quick#brown@fox%jumps%over@the@lazy#dog.


Comments