| searched string | search list | replace list | Explanation |
| How are you? | How | Where | H->W, o->h, w->e |
| searched string | search list | replace list | Explanation |
| How are you? | How | Where | H->H, o->o, w->w, others substituted with last element. |
| How are you? | How | 1234567 | H->H, o->o, w->w, others substituted with last element (7). |
| searched string | search list | replace list | Explanation |
| How are you? | How | 12 | (delete off) H->1, o->2, w->2, list too short, reuse last item |
| How are you? | How | 12 | (delete on) H->1, o->2, w is deleted |