<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://halfgeek.org/wiki/index.php?action=history&amp;feed=atom&amp;title=Strings_%28javascript%29</id>
	<title>Strings (javascript) - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://halfgeek.org/wiki/index.php?action=history&amp;feed=atom&amp;title=Strings_%28javascript%29"/>
	<link rel="alternate" type="text/html" href="https://halfgeek.org/wiki/index.php?title=Strings_(javascript)&amp;action=history"/>
	<updated>2026-05-28T12:28:21Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.34.0</generator>
	<entry>
		<id>https://halfgeek.org/wiki/index.php?title=Strings_(javascript)&amp;diff=145&amp;oldid=prev</id>
		<title>161.253.9.181 at 00:44, 11 May 2005</title>
		<link rel="alternate" type="text/html" href="https://halfgeek.org/wiki/index.php?title=Strings_(javascript)&amp;diff=145&amp;oldid=prev"/>
		<updated>2005-05-11T00:44:44Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&lt;br /&gt;
=charAt=&lt;br /&gt;
&lt;br /&gt;
 str.charAt(2)&lt;br /&gt;
&lt;br /&gt;
Returns a single-character string.&lt;br /&gt;
&lt;br /&gt;
=charCodeAt=&lt;br /&gt;
&lt;br /&gt;
 str.charCodeAt(2)&lt;br /&gt;
&lt;br /&gt;
Returns an int value.&lt;br /&gt;
&lt;br /&gt;
=fromCharCode=&lt;br /&gt;
&lt;br /&gt;
 String.fromCharCode(65,66,67,68,69)&lt;br /&gt;
&lt;br /&gt;
Returns a string made up of the list of codes.&lt;br /&gt;
&lt;br /&gt;
=indexOf=&lt;br /&gt;
&lt;br /&gt;
 str.indexOf(&amp;#039;a&amp;#039;)&lt;br /&gt;
 str.indexOf(&amp;#039;a&amp;#039;,2)&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;after&amp;quot; index is optional.  Returns -1 if nothing is found.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=lastIndexOf=&lt;br /&gt;
&lt;br /&gt;
 str.lastIndexOf(&amp;#039;a&amp;#039;)&lt;br /&gt;
&lt;br /&gt;
Like indexOf.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=length=&lt;br /&gt;
&lt;br /&gt;
 str.length&lt;br /&gt;
&lt;br /&gt;
This is a property, not a function.&lt;br /&gt;
&lt;br /&gt;
=split=&lt;br /&gt;
&lt;br /&gt;
 array = str.split(&amp;quot;/&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
Returns an array.&lt;br /&gt;
&lt;br /&gt;
=substring=&lt;br /&gt;
&lt;br /&gt;
 str.substring(beforeIndex,afterIndex)&lt;br /&gt;
&lt;br /&gt;
Includes beforeIndex, excludes afterIndex.  afterIndex is optional, assumes the end of the string.&lt;br /&gt;
&lt;br /&gt;
=substr=&lt;br /&gt;
&lt;br /&gt;
 str.substr(beforeIndex,length)&lt;br /&gt;
&lt;br /&gt;
Length is optional.  substring is more compatible.&lt;br /&gt;
&lt;br /&gt;
=toLowerCase=&lt;br /&gt;
&lt;br /&gt;
 str.toLowerCase()&lt;br /&gt;
&lt;br /&gt;
=toUpperCase=&lt;br /&gt;
&lt;br /&gt;
 str.toUpperCase()&lt;/div&gt;</summary>
		<author><name>161.253.9.181</name></author>
		
	</entry>
</feed>