Removes any of the specified characters (or "tokens"). The example above removes all commas, dollar signs, and spaces from the table. If no column is specified, then the values in all columns and rows are processed. A specific column may be referenced by either its ID or title. @webref
(String tokens)
| 4099 | * @see Table#trim() |
| 4100 | */ |
| 4101 | public void removeTokens(String tokens) { |
| 4102 | for (int col = 0; col < getColumnCount(); col++) { |
| 4103 | removeTokens(tokens, col); |
| 4104 | } |
| 4105 | } |
| 4106 | |
| 4107 | |
| 4108 | /** |
nothing calls this directly
no test coverage detected