InterviewSolution
Saved Bookmarks
| 1. |
How RegExp.Execute method works? |
|
Answer» The Execute method works like Replace, except that it returns a Matches collection object, containing a Match object for each successful match. It doesn't modify the original string. |
|