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>
Dojo-toolkit.zip( 3,849 k)Related examples in the same category
1. | Is it a string | | |
2. | Padding string | | |
3. | Parse string as number | | |
4. | dojo.string.pad("", 5) | | |
5. | dojo.string.pad("", 5, " ") space | | |
6. | dojo.string.pad("0", 5, "1") | | |
7. | dojo.string.pad("0", 5, "1", true) | | |
8. | dojo.string.substitute | | |
9. | dojo.string.substitute("${0} and ${1}.", ["Jack", "Jill"]) | | |
10. | substitute with function | | |
11. | substitute with named parameters | | |
12. | Trim a string | | |