JavaScript Objects: More on String Methods - FromCharCode() Method
(Page 5 of 6 )
You use the FromCharCode() method to translate Unicode to text. Here is the alphabet written in Unicode. Yep go ahead. Nerd it up.
<html>
<body>
<script type="text/javascript">
document.write("Here is the alphabet in Unicode <br /> <br />")
document.write(String.fromCharCode(65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90))
</script>
</body>
</html>
Here is the result:
Here is the alphabet in Unicode
ABCDEFGHIJKLMNOPQRSTUVWXYZ
Full Unicode charts are freely available on the web and are quite extensive.
The IndexOf() Method
The IndexOf() method is useful if you wish to know where a string within a string begins (its position in the string rather). Behold my next example, puny mortal:
<html>
<body>
<script type="text/javascript">
var myfeelings="I love Gorillas!"
document.write(myfeelings.indexOf("I") + "<br />")
document.write(myfeelings.indexOf("love") + "<br />")
document.write(myfeelings.indexOf("to eat") + "<br />")
document.write(myfeelings.indexOf("Gorillas"))
</script>
</body>
</html>
This creates a variable named myfeelings and stores the text "I love Gorillas" in it. It then checks for the position of the word "I," which it finds, and prints out its position (positions begin with 0). Then it looks for the word "love" and finds it begins at the 2 position (the l that starts the word is the second character in the string). Next it looks for the text "to eat" in the variable, and does not find it. Because it is not in the string, and therefore its position cannot be found, it results in the number -1. Any time info is not found, it will return -1.
Lastly, it searches for the word "Gorillas" (my all time favorite word) and finds it located in position 7. Here are the results of the program:
0
2
-1
7
Note that the IndexOf() method is case-sensitive. If I had told it to find "gorillas" in the string, it would not have worked and returned a -1 for its position.
Next: The LastIndexOf() Method >>
More JavaScript Articles
More By James Payne