MCPcopy Index your code
hub / github.com/processing/processing / replace

Method replace

core/src/processing/data/Table.java:3927–3931  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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) {

Callers 3

PShapeSVGMethod · 0.45
getChildMethod · 0.45
trimMethod · 0.45

Calls 2

getColumnIndexMethod · 0.95
equalsMethod · 0.45

Tested by

no test coverage detected