Hello all,
I have a string
$cText "Hello world wide web."
I want to parse it into an array such that
$cParsedText[0] = "Hello"
$cParsedText[0] = "world"
$cParsedText[0] = "wide"
$cParsedText[0] = "web."
can I use the sscanf to do this? or explode?
-Pete
I have a string
$cText "Hello world wide web."
I want to parse it into an array such that
$cParsedText[0] = "Hello"
$cParsedText[0] = "world"
$cParsedText[0] = "wide"
$cParsedText[0] = "web."
can I use the sscanf to do this? or explode?
-Pete