How to get the first element in a string? - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T04:11:03Zhttp://stackoverflow.com/feeds/question/1143340http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1143340/how-to-get-the-first-element-in-a-string1How to get the first element in a string?John2009-07-17T13:39:18Z2009-07-17T20:08:41Z
<p>Hello,</p>
<p>I'm trying to figure out a way to check a string's first element if it's either a number or not.</p>
<pre><code>if not(myString[0] in [0..9]) then //Do something
</code></pre>
<p>The problem is that I get an error "Element 0 inaccessible - use 'Length' or 'SetLength"</p>
<p>Another way came to my head from my C-like exprieince - convert the first element of the string to char and check the char,but there is no difference in the compile errors.</p>
<pre><code>if not(char(myString[0]) in [0..9]) then //Do something
</code></pre>
<p>How do I accomplish it?</p>
http://stackoverflow.com/questions/1143340/how-to-get-the-first-element-in-a-string/1143355#114335510Answer by TOndrej for How to get the first element in a string?TOndrej2009-07-17T13:41:23Z2009-07-17T13:41:23Z<p>Strings are 1-based:</p>
<pre><code>if not (myString[1] in ['0'..'9']) then // Do something
</code></pre>
http://stackoverflow.com/questions/1143340/how-to-get-the-first-element-in-a-string/1143358#11433586Answer by Oliver Giesen for How to get the first element in a string?Oliver Giesen2009-07-17T13:42:09Z2009-07-17T13:59:43Z<p>Delphi strings use a 1-based index, so just rewrite to</p>
<pre><code>if not(myString[1] in ['0'..'9']) then //Do something
</code></pre>
<p>Also take note of the quotes around the <code>0..9</code>, otherwise you would be comparing characters to integers.</p>
http://stackoverflow.com/questions/1143340/how-to-get-the-first-element-in-a-string/1143376#11433767Answer by smok1 for How to get the first element in a string?smok12009-07-17T13:45:20Z2009-07-17T13:45:20Z<p>Pascal and Delphi indexes string from 1. This is a legacy from time where zero byte contained length, while next 255 (index 1 to 255) contained actual characters.
Joel Spolsky wrote quite good article on string issues: <br>
<a href="http://www.joelonsoftware.com/articles/fog0000000319.html" rel="nofollow">http://www.joelonsoftware.com/articles/fog0000000319.html</a></p>
http://stackoverflow.com/questions/1143340/how-to-get-the-first-element-in-a-string/1143766#11437660Answer by Bruce McGee for How to get the first element in a string?Bruce McGee2009-07-17T14:52:54Z2009-07-17T20:08:41Z<blockquote>
<p>if not(myString[0] in [0..9]) then //Do something</p>
</blockquote>
<p>If you're using Delphi 2009, the TCharacter class in Character.pas has functions like IsDigit to help simplify these kinds of operations.</p>
<p>Once you fix the indexing, of course. :)</p>
http://stackoverflow.com/questions/1143340/how-to-get-the-first-element-in-a-string/1144395#11443950Answer by skamradt for How to get the first element in a string?skamradt2009-07-17T16:33:31Z2009-07-17T16:33:31Z<p>The simplest way to check to see if the first character of string is an integer, and then dispatch:</p>
<pre><code>var
iResult : integer;
begin
if TryStrToInt( mySTring[1], iResult) then
begin
// handle number logic here iResult = number
end
else
begin
// handle non number logic here
end;
end;
</code></pre>
http://stackoverflow.com/questions/1143340/how-to-get-the-first-element-in-a-string/1144470#11444700Answer by Ken White for How to get the first element in a string?Ken White2009-07-17T16:47:30Z2009-07-17T16:47:30Z<p>I use a utility function to test the entire string:</p>
<pre><code>function IsNumeric(const Value: string): Boolean;
var
i: Integer;
begin
Result := True;
for i := 1 to Length(Value) do
if not (Value[i] in ['0'..'9','.','+','-']) then
begin
Result := False;
Break;
end;
end;
</code></pre>
<p>The above code is for Delphi versions prior to 2007. In 2007 and 2009, you could change the integer variable i to a character c, and use for c in Value instead.</p>
<p>To test for integers only, remove the '.' from the set of characters to test against.</p>
http://stackoverflow.com/questions/1143340/how-to-get-the-first-element-in-a-string/1145342#11453420Answer by Marco van de Voort for How to get the first element in a string?Marco van de Voort2009-07-17T19:53:49Z2009-07-17T19:53:49Z<p>This is incorrect. ISO strings and older Pascal's also started at one. It is just a general convention, and afaik the s[0] thing is a result of that being vacant, and cheap to code in the UCSD bytecode interpreter. But that last bit is before my time, so only my guessing.</p>
<p>It results from the Pascal ability to have arbitrary upper and lower bounds, which provides for more typesafety accessing arrays.</p>
<p>Really old Pascal strings (till early eighties) strings were even worse than C ones btw. Multiple conventions were in used, but all were based on static arrays (like early C), but they were typically space padded, so you had scan back from the end till the spaces ended. </p>
<p>(removed the legacy tag, since being 1 based is not legacy. Accessing s[0] as length IS legacy, but that is not what the question is about)</p>