We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent deb9610 commit e914c64Copy full SHA for e914c64
README.md
@@ -10,7 +10,7 @@ A small Java 8+ utilities library ([javadoc](http://google.github.io/mug/apidocs
10
- ✅ [`Substring`](https://github.com/google/mug/wiki/Substring-Explained) – composable substring extraction & manipulation
11
→ `Substring.between("(", ")").from("call(foo)") → "foo"`
12
- ✅ [`StringFormat`](https://github.com/google/mug/wiki/StringFormat-Explained) – compile-time-safe bidirectional parsing/formatting
13
- → `new StringFormat("/home/{user}/{year}-{month}-{day}").parse(filePath, (user, year, month, day) -> ...)`
+ → `new StringFormat("/home/{user}/{date}").parse(filePath, (user, date) -> ...)`
14
- ✅ [`SafeSql`](./mug-guava/src/main/java/com/google/mu/safesql/README.md) – SQL template (***0 injection risk***)
15
→ ```SafeSql.of("select id, `{col}` from Users where id = {id}", col, id)```
16
- ✅ [`DateTimeFormats`](./mug/src/main/java/com/google/mu/time/README.md) – parse datetimes by example
0 commit comments