I was trying to find a quick and easy method to check if the first letter in a string is a number. A lot of the functions and methods I\'ve seen on S.O seem over complicated
I don't know why that answer is deleted, but the correct answer is
preg_match('/^\d/', $string);
Why? Because it provides a standard way to query strings. Normally, you have to answer many similar questions in your application:
etc, etc. Without regular expressions you'd have to invent a different combination of string functions for each case, while REs provide the uniform and standard interface, which you simply reuse over and over again. This is like algebra compared to arithmetic.