Enlightned wrote:Imagine an info from some scene team. The have all those ascii. What I want is remove all those ascii and keep just the text.
ASCII is the name of a standard and not a set of characters. To remove all unwanted characters use following regular expression.
Find What:
[...]Replace With:
nothingThe ... is just a place holder for all the characters you want to delete. Copy and paste them into it. You can also use the invert character set and delete all characters except ... This can be done in UltraEdit style with
Find What:
[~0-9A-Z ^t^p_,.;^*:...]Replace With:
nothingAgain ... is just a place holder for further standard characters. Use View - ASCII Table to get an overview of the characters and read carefully the whole help about the Find Command and the Regular Expressions.
Enlightned wrote:The other question is simple. I just want to know how insert text at the beginning and end of each line.
And this question I have answered already.
You should execute the replace commands with click on button Replace All and not step by step.