简体   繁体   中英

How to remove the string from starting after certain character

I have a string: /userPosts/hemlata993/20 I want to remove this /userPosts/hemlata993/ .

I checked some answers but not being able to remove the first part. How can I do that? I am using php.

$string = /userPosts/hemlata993/20

I want the output as 20 because 20 is the directory or file name that I want to get

You can do it as follows:

$p =  basename(parse_url("/userPosts/hemlata993/20")['path']);
echo $p; //20

If this is what you want and the format of the string is always going to be like the one that you provided, this will work:

$string = "/userPosts/hemlata993/20";
$string_arr = (explode("/",$string));
echo $string_arr[3];

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM