string.split(regex)を使用しているので、「」ごとに文字列をカットしますが、「、」の後に続くスペースの後にカットする方法がわかりません。
String content = new String("I, am, the, goddman, Batman");
content.split("(?<=,)");
配列を教えてくれます
{"I,"," am,"," the,"," goddman,"," Batman"}
私が実際に欲しいのは
{"I, ","am, ","the, ","goddman, ","Batman "}
誰か助けてくれませんか?