At 12:55 PM +1000 4/6/05, Dwayne Rothe wrote:
Is there a way to seperate numbers from text in a string?
e.g "string69" to return 69 or "string69also" to return 69

Is it possible to filter somehow?


Here's one way:

  repeat for each char thisChar in myString
    if thisChar is a number then put thisChar after numbersOnlyString
  end repeat

--
jeanne a. e. devoto ~ [EMAIL PROTECTED]
http://www.jaedworks.com
_______________________________________________
use-revolution mailing list
[email protected]
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to