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)
| 3925 | * @param replacement |
| 3926 | */ |
| 3927 | public void replace(String orig, String replacement) { |
| 3928 | for (int col = 0; col < columns.length; col++) { |
| 3929 | replace(orig, replacement, col); |
| 3930 | } |
| 3931 | } |
| 3932 | |
| 3933 | |
| 3934 | public void replace(String orig, String replacement, int col) { |
no test coverage detected