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
feedback
|
Use this if you don't want to use a regex. | |||||||||||||||||||
feedback
|
|
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
| |||||||||||||||
feedback
|
|
Here you go:
Credit to: | |||||||||||||||||
feedback
|
|
The regex functions above, but with the other tweaks also suggested above:
| |||||
feedback
|
Results
| ||||
feedback
|
|
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:
| |||||||||
feedback
|
|
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
| |||
|
feedback
|
|
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. | |||
|
feedback
|
|
Short and easy-to-understand one-liners without regular expressions. startsWith() is straight forward.
endsWith() uses the slightly fancy and slow strrev():
| |||
|
feedback
|
|
My personal preference would be eliminating all code repeats, so here is another version of Sander Rijken's method:
| |||
|
feedback
|
|
You also can use regular expressions:
| |||
|
feedback
|
|
Here's just a fix on Sander Rijken's method. The
| |||
|
feedback
|
|
Here’s an efficient solution for PHP 4. You could get faster results if on PHP 5 by using
| |||
|
feedback
|
|
The
Tests (
Also, the | |||
|
feedback
|
|
in short:
| ||||
|
feedback
|
|
Both functions can be written using one line of code:
| |||
|
feedback
|