-2
votes
1answer
41 views

How to change file encode from perl script [closed]

I am writing below code into my script but it is not working. Our requirement is need to convert the file from UTF-8 to ANSI iconv -c -f UTF-8 -t MS-ANSI $file > $file2; How to do this in in ...
2
votes
2answers
46 views

How to use utf8 encode with open pragma

I have problem with utf8::encode when use pragma use open qw(:std :utf8); Example #!/usr/bin/env perl use v5.16; use utf8; use open qw(:std :utf8); use Data::Dumper; my $word = "+банк"; say ...
1
vote
3answers
66 views

Mojolicious Template can't render © character

I found error on Mojolicious Renderer when try to render © character (ascii: 169) (also return error when try to render ascii larger than > 128) Template ...
1
vote
1answer
42 views

JS backslash escape char being converted to non-escaping character by Shift JIS

I'm currently working on a website that has two versions, one American website that's served as utf-8 and one Japanese version that's served as Shift JIS. The site is generated using Perl. The ...
1
vote
3answers
89 views

Decode JSON string in Mojolicious that was encoded with JSON.stringify

I am trying to send javascript variable as JSON string to Mojolicious and I am having problems with decoding it on perl side. My page uses utf-8 encoding. The json string (value of ...
4
votes
1answer
66 views

Overload stringification and the utf8 flag

There is something I don't understand about overloading stringification and how it interacts with the utf8 flag. For example the following code prints: n is utf8 at ./test_stringify_utf8.pl line 46. ...
1
vote
1answer
35 views

Is there a difference between “utf8::upgrade” and “is_utf8/decode 'latin1'”?

Do these two code snippets the same thing? utf8::upgrade( $s ); use Encode qw(is_utf8 decode); $s = is_utf8( $s ) ? $s : decode( 'latin1', $s );
2
votes
1answer
67 views

Regex on Unicode string is interpreted as intended by the debugger but not by the program

This is - reduced to a minimum - a program I am using to read and interpret some UTF8 text files: use 5.012; use utf8; binmode STDIN, ':utf8'; binmode STDOUT, ':utf8'; while (<>) { chomp; ...
0
votes
2answers
74 views

How to let File::Queue to be able to process utf8 strings in perl?

I'm processing some data from XML files in perl and wanna use the FIFO File::Queue to divide and speed up the process. One perl script parses the XML file and prepares JSON output for another script: ...
1
vote
1answer
72 views

Sorting Vim lines by perl sort (because builtin sort does not process UTF8 in Windows 7 properly)

I have to edit a large text file with over 600000 Russian lowercased words in UTF8 format. Each word is located on a separate line and the file has been successfully sorted by a Perl script (using ...
0
votes
2answers
87 views

Extracting lowercased russian words from UTF8 text

Using ActiveState Perl 5.14.2 on Windows 7 or Perl 5.10.1 on CentOS 6.3 Linux I am trying to extract all lowercased words from an UTF8 text: #!/usr/bin/perl -w use strict; use warnings; ...
0
votes
3answers
88 views

Generate a UTF-8 character from two HEX pairs

I am trying to generate a UTF-8 character from 2 HEX pairs. The HEX pairs are from strings. This code works: use Encode; my $bytes = "\xC3\xA9"; print decode_utf8($bytes); # Prints: é and is ...
0
votes
3answers
401 views

use utf8 gives me 'Wide character in print'

If I run the following Perl program: perl -e 'use utf8; print "鸡\n";' I get this warning: Wide character in print at -e line 1. If I run this Perl program: perl -e 'print "鸡\n";' I do not get ...
1
vote
2answers
107 views

How to handle over non-ANSI characters to Crypt::Blowfish in Perl?

How to handle over non-ANSI characters to Crypt::Blowfish in Perl? The following script was written in charset UTF-8 and fails only on § or ö. #!/usr/bin/env perl use strict; use warnings FATAL ...
4
votes
3answers
123 views

In Perl, see that é is a variant of e,E

I am processing strings encoded in utf-8, in Perl. One task is that I need a way to know that words starting with a letter with a diacritic, such as "écrit", begin with the same letter as "elephant", ...
6
votes
2answers
166 views

How to emulate word boundary when using unicode character properties?

From my previous questions Why under locale-pragma word characters do not match? and How to change nested quotes I learnt that when dealing with UTF-8 data you can't trust \w as word-char and you must ...
1
vote
1answer
112 views

Why don’t word characters (\w) match right under the use locale pragma?

When I use locale, some characters from my locale (et_EE.UTF-8) are not matched with \w and I don't see any reason there. In addition to ASCII, Estonian uses six more characters: õäöüšž In my ...
0
votes
3answers
87 views

My Perl regexp-matching code doesn't work properly

I have a problem with script perl which doesn't work properly. The script take 2 file on argument : The first is a lexical: a à abaissa abaissable abaissables abaissai abaissaient abaissais ...
1
vote
1answer
130 views

Am I using utf8::is_utf8 correctly?

Does this work correctly? Some error messages are already decode and some need do be decoded do get a correct output. #!/usr/bin/env perl use warnings; use strict; use utf8; use open qw(:utf8 :std); ...
0
votes
2answers
69 views

How differs the open pragma with different utf8?

Do these three versions all behave differently? use open qw( :encoding(UTF-8) :std ); use open qw( :encoding(UTF8) :std ); use open qw( :utf8 :std );
1
vote
3answers
175 views

Convert an iso-8859-1 symbol in a string to utf-8 in Perl

Here is a sample code snippet: my $str = '21156_MLA Ã Copy4.ens'; I'm using this $str in my code, and it should display as 21156_MLA ß Copy4.ens. I'm uploading a file with the filename 21156_MLA ß ...
0
votes
1answer
48 views

How can I induce Term::Readline to set the UTF8 flag one the results from readline?

How can I induce Term::Readline to set the UTF8 flag one the results from readline? #!/usr/local/bin/perl use warnings FATAL => qw(all); use strict; use 5.10.1; use utf8; use open qw( ...
3
votes
2answers
99 views

write utf8 with perl bug?

My problem is simple. I want to output UTF-8 with my Perl script. This code is not working. use utf8; open(TROIS,">utf8.out.2.txt"); binmode(TROIS, ":utf8"); print TROIS "Hello\n"; The ...
5
votes
1answer
247 views

Copy/rename images with utf8 names using csv file

I'm working on a script to batch rename and copy images based on a csv file. The csv consists of column 1: old name and column 2: new name. I want to use the csv file as input for the perl script so ...
2
votes
1answer
95 views

Non-Ascii data behaves differently with different Perl installations

I have the following script which behaves differently on two different Perl installations I have. One is Perl 5.8.5 and the other is Perl 5.8.8. Here is the script: #!/usr/bin/perl use ...
5
votes
1answer
319 views

Why is my Perl program failing with Tie::File and Unicode/UTF-8 encoding?

I am working on a project which deals with data in foreign languages. My Perl scripts were running fine. I then wanted to use Tie::File, since this is a neat concept (and saves time and coding). ...
2
votes
1answer
83 views

How to disable implicit decoding (“upgrading”) in Perl?

Quoting the Perl Unicode FAQ "What if I don't decode?" Whenever your encoded, binary string is used together with a text string, Perl will assume that your binary string was encoded with ...
2
votes
3answers
446 views

utf8 enconding in Perl and MySql

my database (MySql) has a utf8_general collation. I am accessing data from database and showing a webpage (developed in Perl), it is showing Swedish characters (ä,å,ö) with a different characters. I ...
3
votes
2answers
197 views

How to properly use UTF-8-encoded data from Schema inside Catalyst app?

Data defined inside Catalyst app or in templates has correct encoding and is diplayed well, but from database everything non-Latin1 is converted to ?. I suppose problem should be in model class, which ...
2
votes
5answers
265 views

Case insensitive regex for non-English characters

I need to perform a regular expression match on text that includes non-English characters (Spanish, French, German, and Russian). I want the match to ignore case, so with English characters I would ...
0
votes
2answers
174 views

How to convert ASCII format into UTF8 in Perl

eg: &#233; into é Sometimes user getting ascii format character set rather than french character set... So can any one assist Me is there any function in perl that can convert ascii to UTF-8
0
votes
1answer
76 views

DBD::SQLite: sqlite_unicode Pragma

When I connect with DBI/DBD::SQLite to a sqlite database without setting the sqlite_unicode pragma, is then used the sqlite_unicode setting the database was created with?
1
vote
1answer
190 views

Perl cgi and XML::Code double encoding issue

I am using XML::Code to create some XML Data from a GET parameter received through the CGI module. The webserver is Apache with charset set to UTF-8 and the submitting form is on a page with a ...
1
vote
3answers
256 views

Retrieving original JSON code from a decoded array node in Perl

I'm working on a script which receives JSON code for an array of objects similar to this: { "array":[ { "id": 1, "text": "Some text" }, { "id": 2, "text": "Some text" } ] } I decode it ...
1
vote
1answer
125 views

How “Expensive” is Perl's Encode::Detect::Detector

I've been having problems with "gremlins" from different encodings getting mixed into form input and data from a database within a Perl program. At first, I wasn't decoding, and smart quotes and ...
0
votes
1answer
728 views

Oracle WE8ISO8859P15 charset convert to utf8 in perl script

At firt, I have a database where i'm not allowed to changes anything so i have to deal with the given charset. Here is the charset of the database: SELECT * from NLS_DATABASE_PARAMETERS WHERE ...
4
votes
1answer
174 views

Failed to check if file with German name is exist in the file system

Background: I have 2 machines: one is running German windows 7 and my PC running English(with Hebrew locale) windows 7. In my Perl code I'm trying to check if the file that I got from the German ...
1
vote
1answer
118 views

perl create character by code point example from the camel book

I have a fairly basic question. I am going through the camel book 6th edition. In chapter 2 scalar data one example code is this: $alef = chr (0x05d0); I tried to print that with the following ...
1
vote
1answer
121 views

Perl/Java Byte Encoding Differences

So right now, my Java code is creating a different SHA-256 hash than our Perl code, but only when UTF8 characters come into play. I did some debugging and found the byte[] representation of the name ...
1
vote
1answer
917 views

How to encode mail subject in perl?

How to encode mail subject in perl ? Now I finally found something but it's still not working : use MIME::Words qw/encode_mimewords/; $recipientsubject = encode_mimewords('Votre fichier a bien été ...
3
votes
3answers
263 views

Proper handing of UTF-8 in Perl

I have been given a file, (probably) encoded in Latin-1 (ISO 8859-1), and there are some conversions and data mining to be done with it. The output is supposed to be in UTF-8, and I have tried about ...
0
votes
1answer
174 views

Perl stripping bad hex bytes in a utf string

I have a situation where my perl parser will read flat fixed-width input file based on the specification (start, end, length of each field defined) and will create a comma delimited file to be loaded ...
4
votes
2answers
318 views

The proper way of encoding detection in perl

I've got these two strings: %EC%E0%EC%E0+%EC%FB%EB%E0+%F0%E0%EC%F3 %D0%BC%D0%B0%D0%BC%D0%B0%20%D0%BC%D1%8B%D0%BB%D0%B0%20%D1%80%D0%B0%D0%BC%D1%83 This is a url-encoded phrase in Russian in cp-1251 ...
0
votes
2answers
388 views

Perl unicode file with non-unicode content

A software is producing UTF-8 files, but writing content to the file that isn't unicode. I can't change that software and have to take the output as it is now. Don' t know if this will show up here ...
1
vote
1answer
622 views

Uploading an image with application/octet-stream from an UTF-8 webpage with Perl

I have a Javascript/Ajax fileuploader (https://github.com/Valums-File-Uploader/file-uploader) which works fine on a latin-1 encoded webpage. Now I try to use it in an UTF-8 enviroment and it fails. ...
3
votes
2answers
706 views

Perl UTF8 encoding error. Neither LWP::UserAgent->decoded_content or Encode::decode work. Other ideas?

I have an encoding issue in perl when trying to pull back global addresses from webpages using both LWP::Useragent and Encode for character encoding. I've tried googling solutions but nothing seems ...
4
votes
2answers
95 views

Moose && utf8 (package|method) names

Having this: use utf8; package ÁngryBird; #note the Á in the package name perl -c result is syntax OK. use utf8; package ÁngryMoose; use Moose; perl -c says, ÁngryMoose is not a module name ...
4
votes
1answer
285 views

In Perl how do I pass unicode arguments to external commands?

The root cause for this question is my attempt to write tests for a new option/argument processing module (OptArgs) for Perl. This of course involves parsing @ARGV which I am doing based on the ...
6
votes
1answer
214 views

It is correct to switch the default perl's IO to utf-8 while using Plack and Middlewares?

Two starting points: In his answer to Why does modern Perl avoid UTF-8 by default? tchrist pointed out 52 things needed to ensure correct Unicode handling in Perl. The answer shows the boilerplate ...
3
votes
2answers
329 views

perl- trim utf8 bytes to 'length' and sanitize the data

I have utf8 sequence of bytes and need to trim it to say 30bytes. This may result in incomplete sequence at the end. I need to figure out how to remove the incomplete sequence. e.g ...

1 2 3 4