Skip to content

Instantly share code, notes, and snippets.

@jonas-grgt
Created June 2, 2017 11:15
Show Gist options
  • Save jonas-grgt/a795b2162de899ddcb132cf646595e22 to your computer and use it in GitHub Desktop.
Save jonas-grgt/a795b2162de899ddcb132cf646595e22 to your computer and use it in GitHub Desktop.
Pimped version of Java's String.format()
public class Format {
public static String format(String source, String ... args) {
return String.format(source.replaceAll("\\$\\w+", "%s"), (Object[]) args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment