$split_point = \' - \'; $string = \'this is my - string - and more\';
How can i make a split using the second instance of $split_point and not the
Why not split on ' - ', but then join the first two array entries that you get back together?