Hey I have a simple problem that How i can get set of character from String, such as:
Dim s as string
Dim s1 as string
s="73421482716@ bffsdffhjxyz783djk";
s1="xyz";
How it is possible that value of s1 if in s then msgbox" Found"
Just please give some idea or example. I dont have much knowledge abt string saperation in VB, Is there any built-in function can use to do that search?
Thanks a lot 4 your time.
Dim s as string
Dim s1 as string
s="73421482716@ bffsdffhjxyz783djk";
s1="xyz";
How it is possible that value of s1 if in s then msgbox" Found"
Just please give some idea or example. I dont have much knowledge abt string saperation in VB, Is there any built-in function can use to do that search?
Thanks a lot 4 your time.
Comment