How to get the first element in a string? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T04:11:03Z http://stackoverflow.com/feeds/question/1143340 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1143340/how-to-get-the-first-element-in-a-string 1 How to get the first element in a string? John 2009-07-17T13:39:18Z 2009-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#1143355 10 Answer by TOndrej for How to get the first element in a string? TOndrej 2009-07-17T13:41:23Z 2009-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#1143358 6 Answer by Oliver Giesen for How to get the first element in a string? Oliver Giesen 2009-07-17T13:42:09Z 2009-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#1143376 7 Answer by smok1 for How to get the first element in a string? smok1 2009-07-17T13:45:20Z 2009-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#1143766 0 Answer by Bruce McGee for How to get the first element in a string? Bruce McGee 2009-07-17T14:52:54Z 2009-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#1144395 0 Answer by skamradt for How to get the first element in a string? skamradt 2009-07-17T16:33:31Z 2009-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#1144470 0 Answer by Ken White for How to get the first element in a string? Ken White 2009-07-17T16:47:30Z 2009-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#1145342 0 Answer by Marco van de Voort for How to get the first element in a string? Marco van de Voort 2009-07-17T19:53:49Z 2009-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>