| |
substitute with named parameters |
|
|
<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("${person1} and ${person2}.", {person1: "J", person2: "J"}));
}
</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. | dojo.string.substitute("${0} and ${1}.", ["Jack", "Jill"]) | | | 11. | substitute with function | | | 12. | Trim a string | | |
|