J
jay dean
Hi -
I'm looking for a Boolean VBA function, MyFun, that takes in 2 input
strings, String1 and String2, like MyFun(String1,String2). Here are the
specs:
(1) If ALL the tokens in String2 are also tokens of String1, then MyFun
will output to "True", otherwise, it should return "False"
(2) Also, if either String1 or String2 is empty "", then MyFun will
return "False"
(3) The tokens in both input strings are delimited by "," except when
there is only one token contained in any input.
Example:
MyFun("YH,L,GT,W,B,Q","B,GT,YH") should return "True"
MyFun("H,C,KK,V","") should return "False"
MyFun("AY,DC,GJ,U","AY,U,Z") should return "False"
I would appreciate any assistance!
Thank you.
Jay Dean
*** Sent via Developersdex http://www.developersdex.com ***
I'm looking for a Boolean VBA function, MyFun, that takes in 2 input
strings, String1 and String2, like MyFun(String1,String2). Here are the
specs:
(1) If ALL the tokens in String2 are also tokens of String1, then MyFun
will output to "True", otherwise, it should return "False"
(2) Also, if either String1 or String2 is empty "", then MyFun will
return "False"
(3) The tokens in both input strings are delimited by "," except when
there is only one token contained in any input.
Example:
MyFun("YH,L,GT,W,B,Q","B,GT,YH") should return "True"
MyFun("H,C,KK,V","") should return "False"
MyFun("AY,DC,GJ,U","AY,U,Z") should return "False"
I would appreciate any assistance!
Thank you.
Jay Dean
*** Sent via Developersdex http://www.developersdex.com ***