I want to search for a given string, within another string (Ex. find if "something" exists inside "something like this". How can I do the following? :
- Know the position in which "something" is located (in the curr. ex. this is = 0.
- Extract everything to the left or to the right, up to the char. found (see 1).
- Extract a substring beggining where the sought string was found, all the way to X amount of chars (in Visual Basic 6/VBA I would use the Mid function).