Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Convert Opera Contacts in .adr format to csv

by jwkrahn (Abbot)
on Jan 22, 2011 at 10:45 UTC ( [id://883678]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    if ( $content =~ /\t/ ) {
        $content =~ s/\t//g;
    }
    
  2. or download this
    $content =~ tr/\t//d;
    
  3. or download this
        if ( $line =~ /CONTACT/ ) {
            $line =~ s/CONTACT//;
    
  4. or download this
        if ( $line =~ s/CONTACT// ) {
    
  5. or download this
                    if ( $line =~ /(.+?)=.+/ ) {
                        unless ( $cols{$1} and $cols{$1} == 1 ) {
                            $cols{ ucfirst lc $1 } = 1;
                            push @cols, ucfirst lc $1;
                        }
    
  6. or download this
            if ( $$row{$_} ) {
                push @rows, $$row{$_};
            }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (5)
As of 2024-03-28 15:58 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found