| | 29.29.1.Is it a string |
|
<html>
<head>
<script type="text/javascript">
var djConfig = {
baseScriptUri : "js/dojo/"
};
</script>
<script type="text/javascript" src="js/dojo/dojo/dojo.js"></script>
<script>
var s1 = new String("I am a string");
var s2 = "a string";
var s3 = 100;
alert(dojo.isString(s1) + ", " + dojo.isString(s2) + ", " +
dojo.isString(s3));
</script>
</head>
<body></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 |
|