J
jobs
I've got a string that will look like this:
zzz='hello',kkk='goodbye',jpjh='zz7t8d8',mary='Thank
You',jane='idontwantthis',somethingelse='nothinghere'
It will have undefined number comma seperated tokens.
I want to write a VB function that when passed a matching left side
identifier, returns it's assigned value. If none match, returns "Error
No Match"
so myfunction("mary") should return "Thank You"
Thanks for any help or information!
zzz='hello',kkk='goodbye',jpjh='zz7t8d8',mary='Thank
You',jane='idontwantthis',somethingelse='nothinghere'
It will have undefined number comma seperated tokens.
I want to write a VB function that when passed a matching left side
identifier, returns it's assigned value. If none match, returns "Error
No Match"
so myfunction("mary") should return "Thank You"
Thanks for any help or information!