SigStringEditor
Usage
String text = "%player%의 돈: %test%"
SigStringEditor editor = new SigStringEditor();
editor.replace("%player%", "qsef1256");
editor.replace("%money%", "1000");
editor.of(new CustomStringEditor()); // can create custom editor
String result = editor.edit(text);
// result: qsef1256의 돈: 1000String result = SigStringEditor
.ofReplace("%player%", "qsef1256")
.edit("플레이어: %player%");Feature
Last updated