I need two functions that would take a string and return if it starts with the specified character/string or ends with it.
For example:
$str='|apples}';
echo startsWith($str,'|'); //Returns true
echo endsWith($str,'}'); //Returns true
|
Use this if you don't want to use a regex. |
|||||||||||||||||||||
|
|
All answers above seem to do loads of unnecessary work, strlen calculations, string allocations (substr) etc. The 'strpos' and 'stripos' functions return the index of the first occurrence of $needle in $haystack
|
|||||||||||||||||||||
|
|
revised Feb 2013
Results
|
|||||||||
|
|
Both functions can be written using one line of code:
|
|||
Credit To: |
|||||||||||||||||
|
|
The regex functions above, but with the other tweaks also suggested above:
|
||||
|
I realize this has been finished, but you may want to look at strncmp as it allows you to put the length of the string to compare against, so:
|
|||||||||
|
|
If speed is important for you, try this.(I believe it is the fastest method) Works only for strings and if $haystack is only 1 character
|
|||
|
|
Short and easy-to-understand one-liners without regular expressions. startsWith() is straight forward.
endsWith() uses the slightly fancy and slow strrev():
|
|||
|
|
|
in short:
|
||||
|
|
|
Based on James Black's answer, here is its endsWith version:
Note: I have swapped the if-else part for James Black's startsWith function, because strncasecmp is actually the case-insensitive version of strncmp. |
|||
|
|
|
You also can use regular expressions:
|
|||||
|
|
The
Tests (
Also, the |
|||
|
|
|
Why not
output:
Keep in mind, strpos will return false if the needle was not found in the haystack, and will return 0 if, and only if, needle was found at index 0. (aka the beginning) and here's ends with:
In this scenario there is no need for a function startsWith() as
will return true or false accurately. Seems odd it's this simple with all the wild functions running rampant here |
|||
|
|
|
Here’s an efficient solution for PHP 4. You could get faster results if on PHP 5 by using
|
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.