Hey guys,
i know that this works:
Is it possible to use characters like * ? # in the second code:
I hope you get what I mean. Or are there even better functions to solve the problem?
Thanks in advance.
i know that this works:
Code:
bool = "*abc*" like "xabcx" 'true
Code:
dim a as string, b as string
a = "abc"
b = xxxacbxxx"
if True = a like b then
'...
end if
Is it possible to use characters like * ? # in the second code:
Code:
if True = *a* like b then 'I know, that does not work
I hope you get what I mean. Or are there even better functions to solve the problem?
Thanks in advance.