so I am trying to convert a spoken alphanumeric string into useable variable. example is a spoken ip address. As an example:
string(one nine two period one six eight period zero period one slash twenty four)
turn this into
192.168.000.001/24
I understand some string formatting but this is beyond my knowledge. I figure I could turn it into a dictionary. Use a variable and compare the alphanumeric against the numeric value. I am trying to do this without the google services, as it does phone numbers and addresses, but not something like an IP address.
Any help is appreciated.