eg. this string:
$foo = 'this_is_a_string';
Now I want to extract the string that comes after the second _ symbol, no matter how long the string is or how many _ symbols it contains.
this should be the result:
"a_string"
eg. this string:
$foo = 'this_is_a_string';
Now I want to extract the string that comes after the second _ symbol, no matter how long the string is or how many _ symbols it contains.
this should be the result:
"a_string"