dojo.string.substitute("${0} and ${1}.", ["Jack", "Jill"]) : String « Dojo toolkit « JavaScript DHTML






dojo.string.substitute("${0} and ${1}.", ["Jack", "Jill"])

 

<html>
  <head>
    <link rel="StyleSheet" type="text/css"
      href="js/dojo/dijit/themes/tundra/tundra.css">
    <script type="text/javascript">
      var djConfig = {
        baseScriptUri : "js/dojo/",
        parseOnLoad : true
      };
    </script>
    <script type="text/javascript" src="js/dojo/dojo/dojo.js"></script>
    <script>
      dojo.require("dojo.parser");
      dojo.require("dojo.string");
      dojo.addOnLoad(f);
      
      function f(){
        alert(dojo.string.substitute("${0} and ${1}.", ["Jack", "Jill"]));
      }
    </script>
  </head>
  <body class="tundra">
     

</body>
</html>

   
  








Dojo-toolkit.zip( 3,849 k)

Related examples in the same category

1.Is it a string
2.Remove letter from string
3.Padding string
4.Parse string as number
5.dojo.string.pad("", 5)
6.dojo.string.pad("", 5, " ") space
7.dojo.string.pad("0", 5, "1")
8.dojo.string.pad("0", 5, "1", true)
9.dojo.string.substitute
10.substitute with function
11.substitute with named parameters
12.Trim a string