Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Regex for ^K and ^L

Status
Not open for further replies.

jr8rdt

IS-IT--Management
Feb 9, 2006
59
US
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 a perl script running on windows

sorry typo: the perl is running on LINUX
 
If you know it's ctrl-K, then you can use \cK in a regex to match it. If not, use the ord function to print out the numeric equivalent of the character, so you can work out what it is.

Steve

[small]"Every program can be reduced by one instruction, and every program has at least one bug. Therefore, any program can be reduced to one instruction which doesn't work." (Object::perlDesignPatterns)[/small]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top