Please follow PHV's suggestion and look in Help. Look up all the string functions. You will have to BUILD the function you want, using whatever combination of Left, Right, Len, Mid, InStr, Trim etc etc - whatever string functions you need.
In your example:
“ my address is 1234 main st.”
you say you want GetAlpha to = "my address is". Fine, what about "main st"? What about that space before "my".
You have to determine EXACTLY what you want, and use the functions available (listed above). We are not here to post full answers for people. We certainly do post direct answers to specific problems, but your request is a general one. It involves basic understanding of string manipulation. This is required knowledge if you want to use VBA. Look up the examples in Help. What you appear to want to do can be done.
For example, is the originating string always going to be the same length? That will have to be a consideration. Look up Len.
At PHV suggests, look up For...Next to walk through each character.
If you have specific and real problems with the functions, post your code and we will can point out where you may have gone off track, or suggest easier ways of doing something.
Gerry