Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re^3: Adding the duplicate data using arrays

by JavaFan (Canon)
on Aug 11, 2010 at 09:14 UTC ( [id://854282]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Adding the duplicate data using arrays
in thread Adding the duplicate data using arrays

Ah, but you don't really have three columns. You just have two columns, with the first column being "Apple Banana", etc.

Replies are listed 'Best First'.
Re^4: Adding the duplicate data using arrays
by changma_ha (Sexton) on Aug 11, 2010 at 10:07 UTC

    Ok..JavaFan. If i have the data "Apple banana 100" if i split on the basis of "\s+" it will split Apple and Banana...so how can i split in such a way that "Apple Banana " is the key and "100" is the value...give me some wisdom

      my ($fruit, $value) = "Apple banana 100" =~ /^(.*\S)\s+([0-9]+)/;

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (6)
As of 2024-03-28 21:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found