wackywoo105
Registered User.
- Local time
- Today, 03:27
- Joined
- Mar 14, 2014
- Messages
- 203
I want to remove:
Dr P K Jain & Dr T Subramanian
from:
Dr P Jain & Dr T Subramanian, Little Lever Health Centre, Mytham Road, Little Lever, Bolton, Lancashire, BL3 1JF
leaving just the address.
The data is scraped from a website. The problem is the string at the top has and extra letter "K" in it so Replace() doesn't work. Is it possible to have a replace function for a percentage match?
Dr P K Jain & Dr T Subramanian
from:
Dr P Jain & Dr T Subramanian, Little Lever Health Centre, Mytham Road, Little Lever, Bolton, Lancashire, BL3 1JF
leaving just the address.
Code:
string1 = "Dr P K Jain & Dr T Subramanian" & ", ")
string2 = "Dr P Jain & Dr T Subramanian, Little Lever Health Centre, Mytham Road, Little Lever, Bolton, Lancashire, BL3 1JF"
string2 = Replace(string2, string1, "")
The data is scraped from a website. The problem is the string at the top has and extra letter "K" in it so Replace() doesn't work. Is it possible to have a replace function for a percentage match?