How do you find the last occurrence of a character in a string in php?

[PHP 4, PHP 5, PHP 7, PHP 8]

strrposFind the position of the last occurrence of a substring in a string

Description

strrpos[string $haystack, string $needle, int $offset = 0]: int|false

Parameters

haystack

The string to search in.

needle

Prior to PHP 8.0.0, if needle is not a string, it is converted to an integer and applied as the ordinal value of a character. This behavior is deprecated as of PHP 7.3.0, and relying on it is highly discouraged. Depending on the intended behavior, the needle should either be explicitly cast to string, or an explicit call to chr[] should be performed.

offset

If zero or positive, the search is performed left to right skipping the first offset bytes of the haystack.

If negative, the search is performed right to left skipping the last offset bytes of the haystack and searching for the first occurrence of needle.

Note:

This is effectively looking for the last occurrence of needle before the last offset bytes.

Return Values

Returns the position where the needle exists relative to the beginning of the haystack string [independent of search direction or offset].

Note: String positions start at 0, and not 1.

Returns false if the needle was not found.

Warning

This function may return Boolean false, but may also return a non-Boolean value which evaluates to false. Please read the section on Booleans for more information. Use the === operator for testing the return value of this function.

Changelog

VersionDescription
8.0.0 Passing an int as needle is no longer supported.
7.3.0 Passing an int as needle has been deprecated.

Examples

Example #1 Checking if a needle is in the haystack

It is easy to mistake the return values for "character found at position 0" and "character not found". Here's how to detect the difference:

Example #2 Searching with offsets

The above example will output:

int[0]
bool[false]
int[27]
bool[false]
int[17]
bool[false]
int[29]

See Also

  • strpos[] - Find the position of the first occurrence of a substring in a string
  • stripos[] - Find the position of the first occurrence of a case-insensitive substring in a string
  • strripos[] - Find the position of the last occurrence of a case-insensitive substring in a string
  • strrchr[] - Find the last occurrence of a character in a string
  • substr[] - Return part of a string

brian at enchanter dot net

15 years ago

The documentation for 'offset' is misleading.

It says, "offset may be specified to begin searching an arbitrary number of characters into the string. Negative values will stop searching at an arbitrary point prior to the end of the string."

This is confusing if you think of strrpos as starting at the end of the string and working backwards.

A better way to think of offset is:

- If offset is positive, then strrpos only operates on the part of the string from offset to the end. This will usually have the same results as not specifying an offset, unless the only occurences of needle are before offset [in which case specifying the offset won't find the needle].

- If offset is negative, then strrpos only operates on that many characters at the end of the string. If the needle is farther away from the end of the string, it won't be found.

If, for example, you want to find the last space in a string before the 50th character, you'll need to do something like this:

strrpos[$text, " ", -[strlen[$text] - 50]];

If instead you used strrpos[$text, " ", 50], then you would find the last space between the 50th character and the end of the string, which may not have been what you were intending.

david dot mann at djmann dot co dot uk

4 years ago

Ten years on, Brian's note is still a good overview of how offsets work, but a shorter and simpler summary is:

    strrpos[$x, $y, 50];  // 1: this tells strrpos[] when to STOP, counting from the START of $x
    strrpos[$x, $y, -50]; // 2: this tells strrpos[] when to START, counting from the END of $x

Or to put it another way, a positive number lets you search the rightmost section of the string, while a negative number lets you search the leftmost section of the string.

Both these variations are useful, but picking the wrong one can cause some highly confusing results!

dave at pixelmetrics dot com

3 years ago

The description of offset is wrong. Here’s how it works, with supporting examples.

Offset effects both the starting point and stopping point of the search. The direction is always right to left. [The description wrongly says PHP searches left to right when offset is positive.]

Here’s how it works:
When offset is positive, PHP searches right to left from the end of haystack to offset. This ignores the left side of haystack.

When offset is negative, PHP searches right to left, starting offset bytes from the end, to the start of haystack. This ignores the right side of haystack.

Example 1:
$foo = ‘aaaaaaaaaa’;
var_dump[strrpos[$foo, 'a', 5]];
Result: int[10]

Example 2:
$foo = "aaaaaa67890";
var_dump[strrpos[$foo, 'a', 5]];
Result: int[5]

Conclusion: When offset is positive, PHP searches right to left from the end of haystack.

Example 3:
$foo = "aaaaa567890";
var_dump[strrpos[$foo, 'a', 5]];
Result: bool[false]

Conclusion: When offset is positive, PHP stops searching at offset.

Example 4:
$foo = ‘aaaaaaaaaa’;
var_dump[strrpos[$foo, 'a', -5]];
Result: int[6]

Conclusion: When offset is negative, PHP searches right to left, starting offset bytes from the end.

Example 5:
$foo = "a234567890";
var_dump[strrpos[$foo, 'a', -5]];
Result: int[0]

Conclusion: When offset is negative, PHP searches right to left, all the way to the start of haystack.

Daniel Brinca

14 years ago

Here is a simple function to find the position of the next occurrence of needle in haystack, but searching backwards  [lastIndexOf type function]:

//search backwards for needle in haystack, and return its position
function rstrpos [$haystack, $needle, $offset]{
    $size = strlen [$haystack];
    $pos = strpos [strrev[$haystack], $needle, $size - $offset];

        if [$pos === false]
        return false;

        return $size - $pos;
}

Note: supports full strings as needle

anonymous

1 year ago

There is a lot of confusion around how $offset works and I feel it's really quite simple.

If $offset is positive, the operation ignores the first $offset characters of the haystack.
If $offset is negative, the operation ignores the last $offset-1 characters of the haystack [don't ask why -1...].

To understand this instinctively, just imagine the characters being replaced with invalid symbols. Here's an example:

dmitry dot polushkin at gmail dot com

15 years ago

Returns the filename's string extension, else if no extension found returns false.
Example: filename_extension['some_file.mp3']; // mp3
Faster than the pathinfo[] analogue in two times.

escii at hotmail dot com [ Brendan ]

17 years ago

I was immediatley pissed when i found the behaviour of strrpos [ shouldnt it be called charrpos ?] the way it is, so i made my own implement to search for strings.

fab

17 years ago

RE: hao2lian

There are a lot of alternative - and unfortunately buggy - implementations of strrpos[] [or last_index_of as it was called] on this page. This one is a slight modifiaction of the one below, but it should world like a *real* strrpos[], because it returns false if there is no needle in the haystack.

arlaud pierre

10 years ago

This seems to behave like the exact equivalent to the PHP 5 offset parameter for a PHP 4 version.

shimon at schoolportal dot co dot il

16 years ago

In strrstr function in php 4 there is also no offset.

islandispeace at hotmail dot com

6 years ago

$offset is very misleading, here is my understanding:

function mystrrpos[$haystack, $needle, $offset = 0] {
    if [$offset == 0] {
        return strrpos [$haystack, $needle];
    } else {
        return strrpos [substr[$haystack, 0, $offset], $needle];
    }
}

gordon at kanazawa-gu dot ac dot jp

17 years ago

The "find-last-occurrence-of-a-string" functions suggested here do not allow for a starting offset, so here's one, tried and tested, that does:

function my_strrpos[$haystack, $needle, $offset=0] {
    // same as strrpos, except $needle can be a string
    $strrpos = false;
    if [is_string[$haystack] && is_string[$needle] && is_numeric[$offset]] {
        $strlen = strlen[$haystack];
        $strpos = strpos[strrev[substr[$haystack, $offset]], strrev[$needle]];
        if [is_numeric[$strpos]] {
            $strrpos = $strlen - $strpos - strlen[$needle];
        }
    }
    return $strrpos;
}

alexandre at NOSPAM dot pixeline dot be

13 years ago

I needed to check if a variable that contains a generated folder name based on user input had a trailing slash.

This did the trick:

su.noseelg@naes, only backwards

19 years ago

Maybe I'm the only one who's bothered by it, but it really bugs me when the last line in a paragraph is a single word. Here's an example to explain what I don't like:

The quick brown fox jumps over the lazy
dog.

So that's why I wrote this function. In any paragraph that contains more than 1 space [i.e., more than two words], it will replace the last space with ' '.



So, it would change "The quick brown fox jumps over the lazy dog." to "The quick brown fox jumps over the lazy dog." That way, the last two words will always stay together.

maxmike at gmail dot com

13 years ago

I've got a simple method of performing a reverse strpos which may be of use.  This version I have treats the offset very simply:
Positive offsets search backwards from the supplied string index.
Negative offsets search backwards from the position of the character that many characters from the end of the string.

Here is an example of backwards stepping through instances of a string with this function:



Outputs:
Test1
11
5
0
Done
---===---
Test2
0
4

With Test2 the first line checks from the first 3 in "12341234" and runs backwards until it finds a 1 [at position 0]

The second line checks from the second 2 in "12341234" and seeks towards the beginning for the first 1 it finds [at position 4].

This function is useful for php4 and also useful if the offset parameter in the existing strrpos is equally confusing to you as it is for me.

FIE

19 years ago

refering to the comment and function about lastIndexOf[]...
It seemed not to work for me the only reason I could find was the haystack was reversed and the string wasnt therefore it returnt the length of the haystack rather than the position of the last needle... i rewrote it as fallows:



this one fallows the strpos syntax rather than java's lastIndexOf.
I'm not positive if it takes more resources assigning all of those variables in there but you can put it all in return if you want, i dont care if i crash my server ;].

~SILENT WIND OF DOOM WOOSH!

jafet at g dot m dot a dot i dot l dot com

15 years ago

Full strpos[] functionality, by yours truly.



Note that $offset is evaluated from the end of the string.

Also note that conforming_strrpos[] performs some five times slower than strpos[]. Just a thought.

dixonmd at gmail dot com

14 years ago



         If in the needle there is more than one character then in php 4 we can use the above statement for finding the position of last occurrence of a substring in a string instead of strrpos. Because in php 4 strrpos uses the first character of the substring.

eg :

kavih7 at yahoo dot com

16 years ago

stevewa

5 years ago

i wanted to find a leading space BEFORE a hyphen

Crude Oil [Dec] 51.00-56.00

so I had to find the position of the hyphen

then subtract that position from the length of the string [to make it a negative number]
and then walk left toward the beginning of the string, looking for the first space before the hyphen

ex:
$str_position_hyphen  = strpos[$line_new,"-",$str_position_spread];

$line_new_length = strlen[$line_new];

$str_position_hyphen_from_end = $str_position_hyphen - $line_new_length;

echo "hyphen position from end = " . $str_position_hyphen_from_end . "
\n";

                        $str_position_space_before_hyphen  = strrpos[$line_new, " ", $str_position_hyphen_from_end];

echo "*** previous space= " . $str_position_space_before_hyphen . "
\n";

            $line_new = substr_replace[$line_new, ",", $str_position_space_before_hyphen, 1  ];

    echo $line_new . "

\n";

lee at 5ss dot net

19 years ago

I should have looked here first, but instead I wrote my own version of strrpos that supports searching for entire strings, rather than individual characters.  This is a recursive function.  I have not tested to see if it is more or less efficient than the others on the page.  I hope this helps someone!

Christ Off

15 years ago

Function to truncate a string
Removing dot and comma
Adding ... only if a is character found

function TruncateString[$phrase, $longueurMax = 150] {
    $phrase = substr[trim[$phrase], 0, $longueurMax];
    $pos = strrpos[$phrase, " "];
    $phrase = substr[$phrase, 0, $pos];
    if [[substr[$phrase,-1,1] == ","] or [substr[$phrase,-1,1] == "."]] {
        $phrase = substr[$phrase,0,-1];
    }
    if [$pos === false] {
        $phrase = $phrase;
    }
    else {
        $phrase = $phrase . "...";
    }
return $phrase;
}

jonas at jonasbjork dot net

17 years ago

I needed to remove last directory from an path, and came up with this solution:



Might be helpful for someone..

griffioen at justdesign dot nl

17 years ago

If you wish to look for the last occurrence of a STRING in a string [instead of a single character] and don't have mb_strrpos working, try this:

    function lastIndexOf[$haystack, $needle] {
        $index        = strpos[strrev[$haystack], strrev[$needle]];
        $index        = strlen[$haystack] - strlen[index] - $index;
        return $index;
    }

nexman at playoutloud dot net

17 years ago

Function like the 5.0 version of strrpos for 4.x.
This will return the *last* occurence of a string within a string.

    function strepos[$haystack, $needle, $offset=0] {       
        $pos_rule = [$offset

It returns the numerical index of the substring you're searching for, or -1 if the substring doesn't exist within the string.

php NO at SPAMMERS willfris SREMMAPS dot ON nl

15 years ago

ZaraWebFX

18 years ago

this could be, what derek mentioned:

mijsoot_at_gmail_dot_com

15 years ago

To begin, i'm sorry for my English.
So, I needed of one function which gives me the front last position of a character.
Then I said myself that it should be better to make one which gives the "N" last position.

$return_context = "1173120681_0__0_0_Mijsoot_Thierry";

// Here i need to find = "Mijsoot_Thierry"

//echo $return_context."
";// -- DEBUG

function findPos[$haystack,$needle,$position]{
    $pos = strrpos[$haystack, $needle];
    if[$position>1]{
        $position --;
        $haystack = substr[$haystack, 0, $pos];
        $pos = findPos[$haystack,$needle,$position];
    }else{
        // echo $haystack."
"; // -- DEBUG
        return $pos;
    }
    return $pos;
}

var_dump[findPos[$return_context,"_",2]]; // -- TEST

tsa at medicine dot wisc dot edu

18 years ago

What the heck, I thought I'd throw another function in the mix.  It's not pretty but the following function counts backwards from your starting point and tells you the last occurrance of a mixed char string:

pb at tdcspace dot dk

15 years ago

what the hell are you all doing. Wanna find the *next* last from a specific position because strrpos is useless with the "offset" option, then....

ex: find 'Z' in $str from position $p,  backward...

while[$p > -1 and $str{$p} 'Z'] $p--;

Anyone will notice $p = -1 means: *not found* and that you must ensure a valid start offset in $p, that is >=0 and < string length. Doh

purpleidea

15 years ago

I was having some issues when I moved my code to run it on a different server.
The earlier php version didn't support more than one character needles, so tada, bugs. It's in the docs, i'm just pointing it out in case you're scratching your head for a while.

tremblay dot jf at gmail dot com

8 years ago

I created an easy function that search a substring inside a string.
It reverse the string and the substring inside an strpos and substract the result to the length of the string.

if [!function_exists["real_strrpos"]] {
   function real_strrpos[$haystack,$needle] {
      $pos  = strlen[$haystack];
      $pos -= strpos[strrev[$haystack], strrev[$needle] ];
      $pos -= strlen[$needle];
      return $pos;
   }
}

How do you find the last occurrence of a character?

strrchr[] — Locate Last Occurrence of Character in String The strrchr[] function finds the last occurrence of c [converted to a character] in string . The ending null character is considered part of the string . The strrchr[] function returns a pointer to the last occurrence of c in string .

How can I get the last word in PHP?

strrpos[] Function: This inbuilt function in PHP is used to find the last position of string in original or in another string. It returns the integer value corresponding to position of last occurrence of the string, also it treats uppercase and lowercase characters uniquely.

Which PHP function is used to find the position of the last occurrence of a substring inside another string *?

The strrpos[] is an in-built function of PHP which is used to find the position of the last occurrence of a substring inside another string.

How can I match a character in a string in PHP?

The strrchr[] function finds the position of the last occurrence of a string within another string, and returns all characters from this position to the end of the string.

Chủ Đề