Hi Khabza,

> now my problem is I cant type € symbol on my editor Textpad it return funny
> characters like €

Textpad probably allows you to set the encoding of the file to UTF-8,
I think. Set it to UTF-8 so that you will be able to type in the €
symbol.

    use utf8;  # use whenever source code includes UTF-8

    if ( $euros eq 'BC€01' ) {
        # ...
    }


__OR__

    if ( $euros eq 'BC' . chr(0x20AC) . '01' ) {  # 0x20AC is the
hexadecimal value of €
        # ...
    }

Regards,
Alan Haggai Alavi.
-- 
The difference makes the difference

--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/


Reply via email to