I have got a string in PHP.
(check_nt!USEDDISKSPACE!-l g -w 90 -c 95)
I want to split the string at the first ! (between check_nt and USEDDISKSPACE) into two arrays.
I thought to use strpos to get the position of the first sign.
I don´t know how to split the string at the numeric position I get from strpos as return value.