Skip to main content
Filter by
Sorted by
Tagged with
3 votes
0 answers
130 views

I would like to match a string that may contain non-ASCII characters using a regular expression in Go. After writing some tests, I discovered some surprising behavior that I'd like to check if it's ...
Zev Chonoles's user avatar
  • 1,363
1 vote
1 answer
96 views

I'm trying to cleanup a raw data that has embedded \r\n or \n in csv lines.Line terminator is \r\n. trying to translate utf-8 punctuation marks to normal ascii punctuation marks. cleaning up any ...
ramesh.metta's user avatar
0 votes
0 answers
48 views

I have a zipped parquet file with a corrupted header, i.e. it contains weird characters making it impossible to read the table in a standard way. So I created a cleaning function that reads in the ...
Niels's user avatar
  • 153
0 votes
0 answers
75 views

We had a Zero Width Space character problem with our rails app. Somebody copied and pasted a configuration value (a URL) into a form in our rails app, which later caused confusing error messages. It ...
Harry Wood's user avatar
  • 2,371
2 votes
1 answer
153 views

I was looking into GNU tr in bash on Debian Linux. The regex engine appears to have a [:lower:] and [:upper:] shorthand. The regex matches on "lowercase" and "uppercase" letters. ...
Atomic Tripod's user avatar
3 votes
0 answers
104 views

On my Apache web server I have a few (file system) paths that contain spaces or accented characters, such as é, á, or ö. The web server returns "File not found." if (1) the path contains a ...
aNDy's user avatar
  • 31
-1 votes
2 answers
99 views

I have this string: Miami, Florida I would like to find a regex to help defect to see if this string contains ASCII code. I have tried these regex \\p{ASCII}, ^[\\u0000-\\u007F]*$, ^\p{ASCII}*...
NoobCoder's user avatar
2 votes
1 answer
998 views

I have a table that is returning the characters "â\x96\x88" and "â\x96\x80" These are displaying as "â" and "â" However, what I need is for them to display as &...
Lachlan Macnish's user avatar
0 votes
2 answers
149 views

I want to read all text in a PowerPoint file using VBA, and write them to external file (or some other way) to use in another Software. I wrote this code: Sub ReadFileText() On Error Resume Next ...
Abbas Hosain's user avatar
1 vote
1 answer
110 views

My terminal.txt file in the sequel shows the output of my tmpPdfFile.sh and tmpPdfFile1.sh scripts: both scripts are unable to properly manage the file "6._ANbertà_di_scelta.docx.pdf" The ...
Flavio Sartoretto's user avatar
0 votes
1 answer
138 views

I have a .sql file to create a Postgres function: CREATE FUNCTION id_generator°generateid() RETURNS SETOF integer AS $BODY$ BEGIN RETURN QUERY SELECT max(ua_id) FROM user_attribute;...
jojo's user avatar
  • 21
0 votes
0 answers
58 views

I have a file with this text (on Windows 10): 'content' => '<h3>This is Schüler Doc1</h3> <p>glurk</p> <p>Straße</p> <p>Europäisch</p> <p&...
Bob Ray's user avatar
  • 1,190
0 votes
0 answers
23 views

There are unprintable characters in an applescript file. However, when i attempt to run strings on the file, it doesn't output all printable characters. It only outputs a portion of the file as plain ...
EMR's user avatar
  • 29
0 votes
0 answers
159 views

I've written code to perform character frequency analysis on strings by taking the standard ETAOIN SRHD... frequencies of english character occurrence and I have two questions. Is this the most ...
Austin Wile's user avatar
0 votes
0 answers
121 views

I'm searching for a safe method to escape all non-ASCII characters in a QString (and of course to un-escape them later) that will result in pure (printable) ASCII but yield the shortest possible ...
Tobias Leupold's user avatar
1 vote
1 answer
351 views

I have tested my website on localhost but once uploaded i see that in the address is not displayed correctly. The address contains the following errror: 37 Gr�ce Ave instead of 37 Grâce Ave, Here ...
daniele's user avatar
  • 21
2 votes
1 answer
91 views

A very basic problem that I've encountered in a project and it reoccured in this basic code: import java.util.Scanner; public class Special { public static void main(String[] args) { ...
Ghassen Mastouri's user avatar
0 votes
0 answers
24 views

My concern is : when the user begins writing some characters into an AutoCompleteTextView edit field, I would like that, even if he enters the equivalent un-accented characters, the actv drop down ...
Jacki Pilon's user avatar
1 vote
1 answer
288 views

Why is it that the Unicode left three-eighths block and right three-eighths block characters have different heights and widths? I've tested this in a few fonts: 🮈▍🮈▍🮈▍ I'm trying to find full ...
Evidlo's user avatar
  • 344
0 votes
0 answers
80 views

I'm trying to create a defensive read function that doesn't allow non-alphabetic characters to be input. It is working normally using <wchar.h>. However, there is a conflict when printing the ...
Tony Oliveira's user avatar
0 votes
1 answer
2k views

Transferring my large web site I have transferred a lot of photo files between two Linux servers using rsync. Going from Centos 7 to CloudLinux so both Linux. Example of file name on old server ...
Megalithic's user avatar
1 vote
1 answer
145 views

How to find sequence of Alphabets of non-ASCII (other languages) in a given string in PostgreSQL? For example, ASCII alphabets can be matched using '[A-Za-z]'. In SQL Server, @ch BETWEEN 'A' and 'Z' ...
Jitendra Loyal's user avatar
0 votes
0 answers
138 views

I see that the asciifolding filter of OpenSearch only handles Latin accents and does not handle Greek at all (note: some accents are not rendered well in this site due to the font used): POST /...
user2173353's user avatar
  • 4,770
0 votes
0 answers
247 views

I'm new to Python, and am only starting to use it as part of a CTF challenge (I'm a cybersecurity student). I was given a mostly pre-built "decoder" script, and the assignment was to ...
nalthea's user avatar
1 vote
1 answer
474 views

I have list of dictionaries and I loaded those dictionaries from json files. I stored those json files with my code as following import json data = {Some Json} with open('test.json','w',encoding='ISO-...
lokp's user avatar
  • 73
2 votes
2 answers
93 views

I have a .csv file that contains both correct and misread accented characters. For example, on the first line I have "Veríssimo", and on the second I have "VirgÃ-nia" (was supposed ...
Monelisa's user avatar
  • 105
3 votes
1 answer
156 views

Old question I have an R package in which I have a list of university names that I want to match to the user input. The list of names contains special characters and this is generating a warning in R ...
rempsyc's user avatar
  • 1,038
2 votes
1 answer
573 views

I just added support for recipients with IDN in an application that I'm building, but I cannot properly test this feature without having a domain with non-ASCII characters. Is there any free service ...
Thomas Scalise's user avatar
0 votes
1 answer
93 views

I have an R package in which I have a list of university names that I want to match to the user input. The list of names contains special characters and this is generating a warning in R CMD check: ...
rempsyc's user avatar
  • 1,038
0 votes
0 answers
63 views

Convert non Ascii hyphen (-) which is bighypen to ascii, when I pasted big hyphen in VI editor it is pasting like this (▒~@~S). I have a requirement to identify this and replace with ASCII hyphen.
Kalyan Srujan's user avatar
0 votes
1 answer
297 views

Users submitted those weird characters. How to sort them along with normal text in Dart ? 𝔦𝔠𝔦𝔞𝔩𝔞 𝓕𝓪𝓴𝓷𝓬𝓻𝓪 𝗺𝗹𝗲𝗖𝗹𝗮𝗿𝗮 𝙖𝙨𝙡𝙖𝙜𝙖𝙈𝙮 𝖧𝗋𝗂𝖾 𝑮𝒂𝒍𝒍𝒆𝒂 𝐿𝑢𝑛𝑎 𝐃𝐡𝐢𝐚 𝕠ℝ𝕒𝕥𝕧...
TSR's user avatar
  • 21.5k
0 votes
1 answer
2k views

I am constantly facing this issue when importing .csv files into the database. I am getting the following error: Unhandled exception: 'ascii' codec can't decode byte 0xc3 in position 1022: ordinal not ...
Tereza Pávková's user avatar
1 vote
1 answer
3k views

I have a macro that inserts a few literal strings into an excel file to be converted to a txt file. These literal strings have some German special characters. The macro works as expected for ...
Manouil Gioulountas's user avatar
1 vote
1 answer
292 views

I need to hightlight specific keywords of pseudocode into Ace Editor. I've found at the below post a nice and simple solution that works fine: Want to highlight/change color of certain words in Ace ...
Laurent's user avatar
  • 53
0 votes
0 answers
71 views

I am using Laravel Sail and when performing back-end queries, the accented term searches not working, as, for example "éz" becomes "ez". I checked php.ini, and it is UTF-8, so the ...
Tamás László's user avatar
1 vote
1 answer
129 views

I am trying to create a pdf using openPDF. If I try to print certain characters like Ą (U+0104) they are not shown on the pdf which is produced. I have set the Chunk font to Times New Roman using a ....
Stephen's user avatar
  • 11
1 vote
1 answer
271 views

How write the text "ї φ" at MATLAB? This code: text(0.1, 0.1,'ї \varphi') text(0.1, 0.3,{'ї $\varphi$'},'Interpreter','latex') text(0.1, 0.5,{'\text{ї} $\varphi$'},'Interpreter','latex') ...
Imyaf's user avatar
  • 157
2 votes
1 answer
293 views

How change the font type of Greek Letters at MATLAB TeX text? The 'FontName' does not work. I try this code: text(0.5, 0.7,'\it\Omega \phi A b','FontName','Times New Roman','FontSize',50); text(0, 0....
Imyaf's user avatar
  • 157
0 votes
1 answer
117 views

i want to check via and xslt function if a string of an..17 and if a character like this fould it will be replaced with underscore _. My problem is that i dont know how to implement with the specific ...
RamAlx's user avatar
  • 7,486
0 votes
0 answers
45 views

I am trying to use below query: SELECT REPLACE(REPLACE(TRIM([dbo].[fn_string_shuffle] (a.text_field)),'&#x20;',' '),'&amp;','&') AS [text_field] from dbo.test; a.text_field has value 성 이름 ...
Neha Nayal's user avatar
1 vote
1 answer
176 views

alter column party_name nvarchar(max) I am trying to insert below characters: insert into landing.lnd_test (party_name) values ('성 이름') but in the table I see the values are replaced with '? ??'. ...
Neha Nayal's user avatar
1 vote
1 answer
80 views

{ "ハルカナホシノセカイへ": "https://www.youtube.com/watch?v=pwl1nISaCNg" } Simply put, is it yet possible to use non-ascii e.g. CJK characters in the labels of Dhall records? Like, to ...
Futarimiti's user avatar
0 votes
1 answer
2k views

I have a table with several nvarchar(max) fields that are a mess. I am trying to locate the "non-ascii" characters that are going to cause problems during our conversion. I have this ...
Dizzy49's user avatar
  • 1,550
0 votes
1 answer
531 views

I have a PHP program that reads a certain FILE from an INVENTORY SCANNER. The data is streamed in 1 line like this. 3701804901070125616シャルダン ステキプラスクルマ専用 ジャスミンマリアシャルダン ステキプラスクルマ ジ2131970080 ...
K a r L's user avatar
0 votes
0 answers
53 views

I am mantaining a piece of software developed on Matlab R2011b which uses several languages, french among them. I am now compiling the code on Matlab R2022 and the non ASCII characters are represented ...
Marc Raventós's user avatar
3 votes
1 answer
146 views

I am using std::iswalpha to check if a non-ASCII character (French character) is alphabetic. However, I have found that it returns false for é character. I have set my locale to fr_FR.UTF-8 in my code....
Abdo21's user avatar
  • 1,643
1 vote
1 answer
911 views

I've got a CSV file, which has a character encoding which I can't identify. From it's content (German language entries) I could find the following characters matching some 1-byte character encodings: ...
SDwarfs's user avatar
  • 3,259
0 votes
0 answers
24 views

My powershell script needs to accept parameters with non-ASCII characters. And post it as Json to a API, but Powershell is converting all non-ASCII characters. How can I use the non-ASCII characters? ...
Gerrit Verhaar's user avatar
-1 votes
1 answer
110 views

I recently had an issue with an SSIS package where it failed to export the data in a SQL table. I was able to narrow down the problem to a record which contained a strange character in one field. ...
Johnny Bones's user avatar
  • 8,502
0 votes
1 answer
296 views

I struggle to upload files using a POST HTTP request in JMeter, which file name (not file content) contains special characters such as "é è à". For example: "...
user_412857's user avatar

1
2 3 4 5
22