I ran into such a problem, in the console I get this:
742 model 1 category 1 2218240 Kyiv 1447162980 src_ 2015-11-10 15 43 00 2200001 Darnytsya
I only need to leave:
742 Kyiv 2015-11-10 15:43:00 Darnytsya
Who can help? How can I add this code?
Pattern p = Pattern.compile("[A-Za-z0-9_-]+"); Matcher m = p.matcher(data); while(m.find()){System.out.print(data.substring(m.start(), m.end())+" ")}
split(" ")
, and then pokleit necessary parts? - Nofate ♦