CIW
1D0-437 · Question #65
Karl wants to define a character class that includes any alphanumeric word characters. Which of the following choices is best suited for this requirement?
The correct answer is A. /[a-zA-Z_0-9]/. See the full explanation below for the reasoning.
Question
Karl wants to define a character class that includes any alphanumeric word characters. Which of the following choices is best suited for this requirement?
Options
- A/[a-zA-Z_0-9]/;
- B/^w/;
- C/[^a-zA-Z_0-9]/;
- D/[^0-Z$]/;
How the community answered
(58 responses)- A78% (45)
- B7% (4)
- C3% (2)
- D12% (7)
Community Discussion
No community discussion yet for this question.