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

substring [JavaScript snippet]

function main() {
  var str = "onetwothreefour"

  txt_out(str.substring(6,6+5)) // three
  txt_out(str.substring(6,  3)) // two
}