Deletes the character wherever it occurs in the CharArray.
(char ch)
| 1357 | |
| 1358 | /** Deletes the character wherever it occurs in the CharArray. */ |
| 1359 | public CharArray deleteFirst (char ch) { |
| 1360 | for (int i = 0; i < size; i++) { |
| 1361 | if (items[i] == ch) { |
| 1362 | delete(i, i + 1, 1); |
| 1363 | break; |
| 1364 | } |
| 1365 | } |
| 1366 | return this; |
| 1367 | } |
| 1368 | |
| 1369 | /** Deletes the string wherever it occurs in the CharArray. */ |
| 1370 | public CharArray deleteFirst (String str) { |