Answers for "include everything after first char string"

PHP
2

get the string after a character in php

$data = "123_String";    
$whatIWant = substr($data, strpos($data, "_") + 1);    
echo $whatIWant;
Posted by: Guest on April-27-2020

Code answers related to "include everything after first char string"

Browse Popular Code Answers by Language