Substitute the specified text for the parameter
( String param, String value )
| 138 | Substitute the specified text for the parameter |
| 139 | */ |
| 140 | public void replace( String param, String value ) { |
| 141 | int [] range; |
| 142 | while ( (range = findTemplate( param )) != null ) |
| 143 | buff.replace( range[0], range[1], value ); |
| 144 | } |
| 145 | |
| 146 | /** |
| 147 | Find the starting (inclusive) and ending (exclusive) index of the |