René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

split [JavaScript snippet]

function main() {

  var str = "one two three"

  var a   = str.split(" ")

  var b
  while (b=a.pop()) {
    txt_out(b)
  }
}