| |
dojo.string.substitute |
|
|
<html>
<head>
<script type="text/javascript">
var djConfig = {
baseScriptUri : "js/dojo/"
};
</script>
<script type="text/javascript" src="js/dojo/dojo/dojo.js"></script>
<script language="JavaScript" type="text/javascript">
dojo.require("dojo.string");
var template = "${0}! Have a nice ${1}!";
var tokenValues = [ "A", "weekend" ];
alert(dojo.string.substitute(template, tokenValues));
</script>
</head>
<body></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("${0} and ${1}.", ["Jack", "Jill"]) | | | 10. | substitute with function | | | 11. | substitute with named parameters | | | 12. | Trim a string | | |
|