Only one example but here is the regex for the three that i cater for.
Pattern standardPlanetPattern = Pattern.compile(“(?s)(\d+,\d+:\d+)”);
String report = formatStandardList(standardPlanetPattern, planetList);
Pattern newsPlanetPattern = Pattern.compile(“(?s) planet (\d+) in the (\d+),: system”);
report = report +formatNewsList(newsPlanetPattern, planetList);
//Our planet 11 at x:68, y:147
Pattern newsLostPlanetPattern = Pattern.compile(“(?s)Our planet (\d+) at x:(\d+), y:(\d+)”);
report = report +formatNewsList(newsLostPlanetPattern, planetList);