Access 2007
SQL 2005
I have a field Contact.Direct_phone (varchar) that may include numeric special and alpha characters. example +44112 12345 ext 117
Basically, I need to move the extension to Contact.DirectPhoneExt.
What can I use to find the first alpha character "e" in the above example and move everything to right of and (including the "e") to the DirectPhone.Ext column> From there I can strip out special and alpha characters in another step (I've got that figured out)
I've been trying to use the Right() feature is this the best way to go?
TIA
SQL 2005
I have a field Contact.Direct_phone (varchar) that may include numeric special and alpha characters. example +44112 12345 ext 117
Basically, I need to move the extension to Contact.DirectPhoneExt.
What can I use to find the first alpha character "e" in the above example and move everything to right of and (including the "e") to the DirectPhone.Ext column> From there I can strip out special and alpha characters in another step (I've got that figured out)
I've been trying to use the Right() feature is this the best way to go?
TIA