I have a txt file which contain ,if I open using linux VI , character ^K and ^L. Using windows excel or txt edit it shows something like a little square shape. I have a perl script running on windows which suppose to filter out these characters using regex. however so far I have not been successful.
I have used below:
first
if ($_ = !~/[0-9a-zA-Z]/){
ignore
}
second
if ($_ = ~/\^/){
ignore
}
third
if ($_ = ~[^\w]){
ignore
}
I think the ^K is from control K. I think....
how to handle this ??
Help!!
I have used below:
first
if ($_ = !~/[0-9a-zA-Z]/){
ignore
}
second
if ($_ = ~/\^/){
ignore
}
third
if ($_ = ~[^\w]){
ignore
}
I think the ^K is from control K. I think....
how to handle this ??
Help!!