InterviewSolution
Saved Bookmarks
| 1. |
How will you get the first occurrence of one string within another string using VBScript? |
|
Answer» Using InStr function, which returns the first occurrence of one string within another string. The search happens from left to right. |
|