I need to parse out multiple strings and each string can be different
example:
15GIRLCLUB General Help Needed 1.200
15BOYSCLUB General Help 1.200
I would like to parse out like this
15GIRLCLUB
General Help Needed
1.200
15BOYSCLUB
General Help
1.200
I tried using this but its not getting what I need. I would like the title to parse out up until it gets to a number or if there is another way to do it I would appreciate it any help thanks
CID = Left(AP4, 10)
Title = Trim(mid(AP4,11, 23))
example:
15GIRLCLUB General Help Needed 1.200
15BOYSCLUB General Help 1.200
I would like to parse out like this
15GIRLCLUB
General Help Needed
1.200
15BOYSCLUB
General Help
1.200
I tried using this but its not getting what I need. I would like the title to parse out up until it gets to a number or if there is another way to do it I would appreciate it any help thanks
CID = Left(AP4, 10)
Title = Trim(mid(AP4,11, 23))