The decoding at open fails also with 3 non-ascii characters when the 3 non-ascii characters are not consecutive.Plasm wrote:...example: "äeiöü" results in "äeiöü"...
Search found 4 matches
- Wed Jun 05, 2019 8:48 am
- Forum: General
- Topic: Problem with 1 or 2 UTF-8 characters
- Replies: 8
- Views: 2371
- Wed Jun 05, 2019 7:50 am
- Forum: General
- Topic: Problem with 1 or 2 UTF-8 characters
- Replies: 8
- Views: 2371
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 ...
- Sat Nov 26, 2011 7:46 am
- Forum: General
- Topic: Find a formatted number and replace with the line numer
- Replies: 3
- Views: 613
- Fri Nov 25, 2011 11:16 am
- Forum: General
- Topic: Find a formatted number and replace with the line numer
- Replies: 3
- Views: 613
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 ...