Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Clipboard transform key: de-dupe blank columns

by PhilHibbs (Hermit)
on Nov 13, 2003 at 12:34 UTC ( [id://306776]=note: print w/replies, xml ) Need Help??


in reply to Clipboard transform keys

This one searches the clipboard text for blank columns, and removes them if there are two or more adjacent. I use it to tidy up captured screens, especially those that have been stitched together.
@rem = '--*-Perl-*-- @echo off perl -x -S "%~dpnx0" %1 %2 %3 %4 %5 %6 %7 %8 %9 goto endofperl @rem '; #!perl #line 8 use strict; use warnings; use Win32::Clipboard; use Text::Orientation; my $CLIP = Win32::Clipboard(); my $rot = Text::Orientation->new( TEXT => $CLIP->GetText ); $_ = $rot->transpose(); s|\x0d\x0a|\x0a|g; s/\n( +)\n +\n/\n$1\n/g while /\n( +)\n +\n/; $rot = Text::Orientation->new( TEXT => $_ ); $CLIP->Set( $rot->transpose() ); __END__ :endofperl

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://306776]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (4)
As of 2024-04-19 02:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found