Is there an option to replace characters with a backspace ?
Example Input:
This is 01 text.
This is 02 text.
[do some replace command to find the numbers "0" and replace it with a backspace to result in ...]
Output:
This is 1 text.
This is 2 text.
Replace command (replace using a backspace)
Hi Jay,
In general, depending on the shape of the text being changed Zeus offers several ways to manipulate the text including a keyboard macro script, a search and replace or maybe even a column cut and copy.
But in to answer your question to convert this text:
into this text:
using a Search and Replace this is what I would do:
Cheers Jussi
In general, depending on the shape of the text being changed Zeus offers several ways to manipulate the text including a keyboard macro script, a search and replace or maybe even a column cut and copy.
But in to answer your question to convert this text:
Code: Select all
This is 01 text.
This is 02 text.
into this text:
Code: Select all
This is 1 text.
This is 2 text.
- Select the Edit Replace menu
- Enter this Find text (0)([0-9]+)
- Enter this Replace text \2
- Check the Use regular expression option
- Click the Replace All button
Cheers Jussi