12-17-2007 01:04 AM
12-17-2007 01:44 AM - edited 12-17-2007 01:46 AM

We have two ears and one mouth so that we can listen twice as much as we speak.
Epictetus
12-17-2007 06:58 AM
In the text you say that you want to remove everything that is a letter, leaving only numbers and dots, but your example leaves a pair of brackets () in too.
However both cases can be dealt with by using "Search and replace string" which you should right click and configure for regular expression.
Wire a true constant to "Replace all" and your input to "input string". Set the replace string to the empty string.
Now you need to set the search string to match everything you want to REMOVE
To remove everything that isn't a number, or a dot or a bracket use "[^\d.()]"
To remove all letters, keeping everything else, use "[A-Za-z]"
Foe full details, see the search and replace string help message, and follow the link to regular expressions.
Rod.
12-17-2007 07:05 AM