Replace a String with another. Set empty entries null by using replace("", null) or use replace(null, "") to go the other direction. If this is a typed table, only String columns will be modified. @param orig @param replacement
(String orig, String replacement)
| 4015 | * @param replacement |
| 4016 | */ |
| 4017 | public void replace(String orig, String replacement) { |
| 4018 | for (int col = 0; col < columns.length; col++) { |
| 4019 | replace(orig, replacement, col); |
| 4020 | } |
| 4021 | } |
| 4022 | |
| 4023 | |
| 4024 | public void replace(String orig, String replacement, int col) { |
no test coverage detected