some characters cannot be converted to code page 1252
Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard
-
- Posts: 11
- Joined: Tue Mar 31, 2020 5:33 pm
some characters cannot be converted to code page 1252
I keep getting this dialog box pop up.
how do I use regex to find the characters
or to replace them ?
[\x00-\x09\x0B-\x0C\x0E-\x1F]+
did not find the characters.
running textpad 8.3
how do I use regex to find the characters
or to replace them ?
[\x00-\x09\x0B-\x0C\x0E-\x1F]+
did not find the characters.
running textpad 8.3
-
- Posts: 11
- Joined: Tue Mar 31, 2020 5:33 pm
-
- Posts: 11
- Joined: Tue Mar 31, 2020 5:33 pm
ty !!!!!!!
that is strange.
when i copy paste from the webpage textpad
does not covert the apostrophes and quotation marks
and such .
that is why i get the error when i try to save.
how would i fix it?
should i select a different code page ?
pasted in text is :
You want things to make sense. But they won’t.
that is strange.
when i copy paste from the webpage textpad
does not covert the apostrophes and quotation marks
and such .
that is why i get the error when i try to save.
how would i fix it?
should i select a different code page ?
pasted in text is :
You want things to make sense. But they won’t.
-
- Posts: 11
- Joined: Tue Mar 31, 2020 5:33 pm
-
- Posts: 11
- Joined: Tue Mar 31, 2020 5:33 pm
Warning: Some characters cannot be converted to code page
Warning: Some characters cannot be converted to code page 1252
I keep getting this Textpad warning when saving , but cannot find the characters to replace.
Please Help.
[\x{0100}-\x{FFFF}]
this search does not find any results
I keep getting this Textpad warning when saving , but cannot find the characters to replace.
Please Help.
[\x{0100}-\x{FFFF}]
this search does not find any results
-
- Posts: 2461
- Joined: Sun Mar 02, 2003 9:22 pm
Is that website also available to us? If yes: which part should we copy so we might be able to reproduce what you experience?jschwartz13@att.net wrote:when i copy paste from the webpage
Alternatively save the file in UTF-8 encoding, upload it somewhere, then provide the download link here.
Won't that skip Emojis and other codepoints beyond 0x10000? How about searching forben_josephs wrote:[\x{0100}-\x{FFFF}]
Code: Select all
[^\x00-\xFF]
-
- Posts: 2461
- Joined: Sun Mar 02, 2003 9:22 pm
-
- Posts: 11
- Joined: Tue Mar 31, 2020 5:33 pm
-
- Posts: 11
- Joined: Tue Mar 31, 2020 5:33 pm
the find phrase did not find this non code 1252 chars.
any ideas on a search phrase to find these pesky chars ?
the tabs and bullets get found, but the plus plus does not get found.
• performing core mathematical and statistical model development/validation;
• using Python, C++, R, SAS, and SQL or other programming languages and mathematical/statistical packages;
• contributing code to analytics libraries;
any ideas on a search phrase to find these pesky chars ?
the tabs and bullets get found, but the plus plus does not get found.
• performing core mathematical and statistical model development/validation;
• using Python, C++, R, SAS, and SQL or other programming languages and mathematical/statistical packages;
• contributing code to analytics libraries;
-
- Posts: 2461
- Joined: Sun Mar 02, 2003 9:22 pm
I am confused. Each of these regexes:
[^\x00-\xFF]
[\x{0100}-\x{FFFF}]
matches a Unicode BULLET (U+2022), which is not a Windows-1525 character, but not a CHARACTER TABULATION (U+0009) or a PLUS SIGN (U+002B), both of which are Windows-1252 characters. Is that not what you require?
Precisely which characters are not matched by these regexes that you would like to be matched by some other regex?
[^\x00-\xFF]
[\x{0100}-\x{FFFF}]
matches a Unicode BULLET (U+2022), which is not a Windows-1525 character, but not a CHARACTER TABULATION (U+0009) or a PLUS SIGN (U+002B), both of which are Windows-1252 characters. Is that not what you require?
Precisely which characters are not matched by these regexes that you would like to be matched by some other regex?
-
- Posts: 11
- Joined: Tue Mar 31, 2020 5:33 pm