How can I find extended ASCII characters in a file using Perl? Can anyone get the script?
.....thanks in advance.....
|
How can I find extended ASCII characters in a file using Perl? Can anyone get the script? .....thanks in advance.....
| ||||
|
feedback
|
|
Since the extended ASCII characters have value 128 and higher, you can just call ord on individual characters and handle those with a value >= 128. The following code reads from stdin and prints only the extended ASCII characters:
Alternatively, unpack together with chr will also work. Example:
(I'm sure some Perl guru can condense both of these to two one-liners...) To print the line numbers instead, you can use the following (this does not remove duplicates, and will have odd behaviour when unicode is passed):
(Thanks Yaakov Belch for the | |||||||
feedback
|
|
The first printable ASCII character is
although it will, admittedly, also display lines containing control characters as well as extended ASCII. Edit: Changed to print the line number rather than the line itself. | |||||||
feedback
|
|
Oneliner:
for older perl versions
| |||
|
feedback
|
|
A crucial question is whether the use bytes; pragma should be in effect. The poster should decide that. For picking characters with codes greater than 127, the following will suffice:
or
| |||
|
feedback
|
|
Hynek -Pichi- Vychodil's answer:
only tests a limited part of the non-printing should presumably be
instead. | |||
|
feedback
|