Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 470 Bytes

0226.md

File metadata and controls

15 lines (12 loc) · 470 Bytes

You want to search for such users who have not used any digit in their user names to register to your Website. Which of the following regular expressions will you use to accomplish the task?

  • A) [^[:digit:]]
  • B) [[:digit:^]]
  • C) ^[[:digit]]
  • D) [[:digit:]^]
Answer

Answer: A