import java.util.regex.Matcher;
import java.util.regex.Pattern;

class Main
{
	public static void main (String[] args) throws java.lang.Exception
	{
        String str = "\"Name\":\"jon\" \"location\":\"3333 abc street\" \"country\":\"usa\"";
        Pattern p = Pattern.compile("(.+?)(\\s+(?=(?:(?:[^\"]*\"){2})*[^\"]*$)|$)");
        Matcher m = p.matcher(str);
        for (int i=0; m.find(); i++)
           System.out.printf("Scol[%d]: [%s]%n", i, m.group(1).replace("\"", ""));		
	}
}