vote up -3 vote down star
1

Possible Duplicate:
How do I detect unicode characters in a Java string?

Inspired from How do I detect Unicode characters in a Java string?

Suppose I have a string that contains Ü. How would I find all those Unicode characters? Should I test for their code? How would I do that with out using any external modules?

For example, given the string "AÜXÜ", I'd like to transform it to "AYXY". I'd like to do the same for other Unicode characters, and I would hate to have to store them in a translation map of some sort.

flag

Inspired? Copied. You now have created a duplicate. – Manni Nov 4 at 15:27
Hmm, it wasn't a duplicate when I answered it. – Wooble Nov 4 at 15:27
1  
And the OP didn't read the answers to that question, and thus made the same mistake of thinking that ASCII characters are not Unicode. – Stephen C Nov 4 at 15:41
1  
It's not a true dupe as the previous question was specifically discussing solutions in java, but it's true that the conversion method is the same in both languages: a mapping table. The OP should have asked "what unicode conversion methods exist in Perl?" – Ether Nov 4 at 17:43

closed as exact duplicate by Manni, Sinan Ünür, Brad Gilbert, mobrule, joe Nov 5 at 10:48

3 Answers

vote up 5 vote down check

Just because you can't use external modules doesn't mean you can't look at their source to see what they do. If there was some magical easier way of doing things, there probably wouldn't be a module. Maybe we can help you figure out how to use the module, as it's often a myth that you can't use them.

You're looking to unaccent text, read the Perlmonks post How to unaccent text?. Look at the modules to see what they do.

If you don't want to use a module, you're going to have to maintain your own map. You can't at once refuse to use modules and also hope that you won't have to redo the task yourself.

link|flag
vote up 3 vote down

Why without any external modules?

You'll need a huge hash in your code, in which you enter each unicode code point and the corresponding ASCII character you think you should normalize it to. And then you need to maintain this inside each perl script you're doing this in when you realize that you've done it worse than the modules you could find in CPAN to do this for you and that you need to make changes.

link|flag
i cant add any external modules to load – joe Nov 4 at 15:11
Why do you think that you can't use modules? – brian d foy Nov 4 at 16:31
vote up 0 vote down

If all you want to do is remove accents, here's one way, from http://perlmonks.org/?node_id=318800. Haven't retested it with newer perls, but it should still work.

use 5.008;
use charnames ();

sub deaccent {
    # split it into characters, then loop through them converting one by one
    my @chars = split //, $_[0];
    for my $char (@chars) {

        # look up the name (e.g. "LATIN SMALL LETTER O WITH TILDE")
        my $name = charnames::viacode(ord($char));

        # only try to convert it if it was a valid char and had " WITH "
        if ($name && $name =~ m/(.*) WITH /) {
            # take off the " WITH foo" and see if that is a valid char
            my $neword = charnames::vianame("$1");
            $char = chr($neword) if $neword;
        }
    }
    return join '', @chars;
}
link|flag
This might work fine if all you have are precomposed characters, but it's a bit more complicated than this since you should handle combining characters. It might be better to decompose everything then remove the mark characters if you really want to go this way. – brian d foy Nov 5 at 8:23
Combining characters are an abomination and I am very thankful to have never had to deal with them. – ysth Nov 5 at 8:51
@ysth In this particular combining may be even easy to deal with, just ignore them. – larelogio 8 hours ago

Not the answer you're looking for? Browse other questions tagged or ask your own question.