Search found 4 matches

by jmparatte
Wed Jun 05, 2019 8:48 am
Forum: General
Topic: Problem with 1 or 2 UTF-8 characters
Replies: 8
Views: 2193

Plasm wrote:...example: "äeiöü" results in "äeiöü"...
The decoding at open fails also with 3 non-ascii characters when the 3 non-ascii characters are not consecutive.
by jmparatte
Wed Jun 05, 2019 7:50 am
Forum: General
Topic: Problem with 1 or 2 UTF-8 characters
Replies: 8
Views: 2193

Re: Problem with 1 or 2 UTF-8 characters

Hi, I encountered another problem in 8.1.2 (64Bit) related to UTF-8 encoding: If I open a file with only one or two UTF-8 characters, the file is loaded as ANSI which leads to a broken character presentation. Even if the file open dialog is used and the charset is set to UTF-8 explicitly, the file ...
by jmparatte
Sat Nov 26, 2011 7:46 am
Forum: General
Topic: Find a formatted number and replace with the line numer
Replies: 3
Views: 552

Thank you very match for the reply.
I never take care of option POSIX before :D
by jmparatte
Fri Nov 25, 2011 11:16 am
Forum: General
Topic: Find a formatted number and replace with the line numer
Replies: 3
Views: 552

Find a formatted number and replace with the line numer

My wish: Find a pattern '(ddd)' and replace ddd with the line number. Example with ActionsScripot3: ... trace('signature','(123)',...); ... The idea is to replace '(123)' by the line number, because after editing text, the line number has changed. What to find: [(][0-9]+[)] Replace: (\i) But \i is ...