Jump to content

[SOLVED] Regex - Get anything after last forward slash "/"


gladideg

Recommended Posts

I have a long URL with lots of stuff in it, and many slashes. I need to get whatever value that is after the last slash.

 

I've tried different techniques, but I'm totaly lost and got a brain carpet atm.

 

Anyone could give me a hand here?

 

http://blabla.com:2995/sjj43_defin/super/30210014003410301031 <- I need the bold values.

 

:-\

 

 

Using the simple string functions would be fastest:

 

<?php
$str = 'http://blabla.com:2995/sjj43_defin/super/30210014003410301031';
echo substr(strrchr($str, '/'), 1);
?>

strrchr($str, '/') returns everything after the last slash, including the slash (/30210014003410301031)

substr('/30210014003410301031', 1) cuts the first char off

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.