Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 15th, 2012  |  syntax: None  |  size: 0.27 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Exposing javascript template to end users
  2. var userTemplate = "{{Persons.Total}} persons including {{Persons.First}}";
  3. var variables = { Persons { Total: 10, First: "Bob" } };
  4. return template(userTemplate, variables); // = "10 persons including Bob"
  5.        
  6. regex=/<[sS]+>/