Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If Str1 and Str2 are strings, is there a function or simple coding within VBA
to return TRUE if Str1 is a substring of Str2, otherwise FALSE? Thanks in advance -- Gary's Student |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Gary's Sudent,
For xl2k == look at the InStr function in VBA help. BTW, Why does Gary never give you an answer? --- Regards, Norman "Gary's Student" wrote in message ... If Str1 and Str2 are strings, is there a function or simple coding within VBA to return TRUE if Str1 is a substring of Str2, otherwise FALSE? Thanks in advance -- Gary's Student |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
One way:
Dim bSubString As Boolean bSubString = InStr(Str2, Str1) 0 In article , "Gary's Student" wrote: If Str1 and Str2 are strings, is there a function or simple coding within VBA to return TRUE if Str1 is a substring of Str2, otherwise FALSE? Thanks in advance |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Look at InStr() in VBA or even Like
if instr(1,str2,str1,vbtextcompare) 0 or if lcase(str2) like "*" & lcase(str1) & "*" then I think I got my str1's and str2's correct--but you'll soon find out! (And I made it so upper/lower case didn't matter.) Gary's Student wrote: If Str1 and Str2 are strings, is there a function or simple coding within VBA to return TRUE if Str1 is a substring of Str2, otherwise FALSE? Thanks in advance -- Gary's Student -- Dave Peterson |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thank you both very much.
Norman: Gary does give me many answers. He does not function 24/7. The individuals that support this forum are razor-sharp and lightning-fast. Perhaps I should change my name to Forum's Student. -- Gary's Student "Norman Jones" wrote: Hi Gary's Sudent, For xl2k == look at the InStr function in VBA help. BTW, Why does Gary never give you an answer? --- Regards, Norman "Gary's Student" wrote in message ... If Str1 and Str2 are strings, is there a function or simple coding within VBA to return TRUE if Str1 is a substring of Str2, otherwise FALSE? Thanks in advance -- Gary's Student |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I think InStr has been there for a long time (forever??).
I bet you were warning about instrrev??? Norman Jones wrote: Hi Gary's Sudent, For xl2k == look at the InStr function in VBA help. BTW, Why does Gary never give you an answer? --- Regards, Norman "Gary's Student" wrote in message ... If Str1 and Str2 are strings, is there a function or simple coding within VBA to return TRUE if Str1 is a substring of Str2, otherwise FALSE? Thanks in advance -- Gary's Student -- Dave Peterson |
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You can also use
If str2 like "*" & str1 & "*" Then .... -- HTH RP (remove nothere from the email address if mailing direct) "Gary's Student" wrote in message ... If Str1 and Str2 are strings, is there a function or simple coding within VBA to return TRUE if Str1 is a substring of Str2, otherwise FALSE? Thanks in advance -- Gary's Student |
#8
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Dave,
I bet you were warning about instrrev??? Yes, I was Dave! Thanks for the correction. --- Regards, Norman "Dave Peterson" wrote in message ... I think InStr has been there for a long time (forever??). I bet you were warning about instrrev??? Norman Jones wrote: Hi Gary's Sudent, For xl2k == look at the InStr function in VBA help. BTW, Why does Gary never give you an answer? --- Regards, Norman "Gary's Student" wrote in message ... If Str1 and Str2 are strings, is there a function or simple coding within VBA to return TRUE if Str1 is a substring of Str2, otherwise FALSE? Thanks in advance -- Gary's Student -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
extracting substring | Excel Discussion (Misc queries) | |||
substring | Excel Discussion (Misc queries) | |||
Finding a Substring? | Excel Worksheet Functions | |||
Substring | Excel Discussion (Misc queries) | |||
Substring | Excel Discussion (Misc queries) |