[Solved] How to split a string between two delimiters in php [closed]


$String1 = 'ABC*WELCOME*CDF';
list( ,$myString, ) = explode('*',$String1);
echo $myString;

2

solved How to split a string between two delimiters in php [closed]