I want to split a string which not having spaces or etc. Ex:START44.98. It always having "START" and values is different.ex:00 .00, 000.00,0.00. I want to take only the numeric value. How can i do that. I can't use split. Because value will vary.
This is what i have done so far.
[PHP]
$mn=split(" ",$message) ;//start33.33 06-08-2008 15:02 1Stop
$mnn = $mn[0];//start33.33
[/PHP]
This is what i have done so far.
[PHP]
$mn=split(" ",$message) ;//start33.33 06-08-2008 15:02 1Stop
$mnn = $mn[0];//start33.33
[/PHP]
Comment