I'm trying to split the following string primarily based on whitespace. Please refer to the following example
Name:"John Adam" languge:"english" Date:" August 2011"
I need to split the text based on each parameter. For e.g.
Name:"John Adam"
languge:"english"
Date:" August 2011"
I'm not able to construct the right regex for this scenario.
Any pointers will be appreciated.
-Thanks