InterviewSolution
Saved Bookmarks
| 1. |
Which of the following matches end of the string using regular expression in java?(a) z(b) \(c) *(d) |
|
Answer» Correct answer is (a) z Explanation: z is used to match end of the entire string in regular expression in java. |
|