<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.pad("", 5, " ")+"<");
}
</script>
</head>
<body class="tundra">
</body>
</html>
29.29.String |
| 29.29.1. | Is it a string |
| 29.29.2. | Remove letter from string |
| 29.29.3. | Padding string |
| 29.29.4. | Parse string as number |
| 29.29.5. | dojo.string.pad("", 5) |
| 29.29.6. | dojo.string.pad("", 5, " ") space |
| 29.29.7. | dojo.string.pad("0", 5, "1") |
| 29.29.8. | dojo.string.pad("0", 5, "1", true) |
| 29.29.9. | dojo.string.substitute |
| 29.29.10. | dojo.string.substitute("${0} and ${1}.", ["Jack", "Jill"]) |
| 29.29.11. | substitute with function |
| 29.29.12. | substitute with named parameters |
| 29.29.13. | Trim a string |