I'm trying to figure this out, but every google I do just brings up garbage.
What I'm trying to do is split a string at an *
I want the string to be in 2 parts basically. So..
Say the string is 2478*72-432*823-74
What I want to do is split it right after the first * and have the 2 new strings as new strings
So it would be:
given = F4K8*72-432*82T-74
split given @ *
part1 = F4K8*
part2 = 72-432*82T-74