| | 29.29.2.Remove letter from string |
|
<html>
<head>
<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("dojox.string.Builder");
dojo.require("dojox.string.sprintf");
function testIt() {
var b = new dojox.string.Builder("Java");
alert(b);
b.remove(0, 1);
alert(b);
}
</script>
</head>
<body onLoad="testIt();">
</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 |
|