Is it possible to have a flow which speaks numbers on pressing numbers on dialpad ?
For eg: i press "1" and a speech output comes "one".
and i am a little strucked ,
I want to split the location from gps value like "12.23423,34.23455" with comma(,) ; what i actually want to do is url escape comma between the co-ordinates.
thanks for help..
New feature request
Moderator: Martin
Re: New feature request
Speaking the numbers pressed on the dialpad is not possible.
You can replace a part of a string in a script:
loc="12.34,56.78"
loc2=replace(loc, ",", "xyz");//replaces comma by xyz
Why do you want to url escape the comma?
Many services like google maps accept a plain comma:
https://maps.google.com/maps?q=12.34,56.78
so you can create an URL in an SMS or mail like this:
https://maps.google.com/maps?q={locatio ... at,decimal}
You can replace a part of a string in a script:
loc="12.34,56.78"
loc2=replace(loc, ",", "xyz");//replaces comma by xyz
Why do you want to url escape the comma?
Many services like google maps accept a plain comma:
https://maps.google.com/maps?q=12.34,56.78
so you can create an URL in an SMS or mail like this:
https://maps.google.com/maps?q={locatio ... at,decimal}
Re: New feature request
Thank for the answer Martin.