Hard word wrap @param s the words @param len the length per line @return the wrapped string
(String s, int len)
| 125 | * @return the wrapped string |
| 126 | */ |
| 127 | public static String wrap(String s, int len) { |
| 128 | return wrap(s, len, null, false); |
| 129 | } |
| 130 | |
| 131 | /** |
| 132 | * Soft Word wrap |