Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

comparing first character of a string

Status
Not open for further replies.

tbathe3

Programmer
May 31, 2000
1
0
0
US
how would I go about comparing the first character of a string to another.<br>if (first letter of this string) &lt;&gt; (first letter of this string) then<br>do whatever<br><br>any help would be greatly appreciated!<br><br>thom
 
if Left(1,{yourstring})&lt;&gt; Left(1,{this string})<br>should work
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top