Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: compare two strings and return only he unique values.

by smls (Friar)
on Feb 03, 2013 at 19:54 UTC ( [id://1016854]=note: print w/replies, xml ) Need Help??


in reply to compare two strings and return only he unique values.

You can also use List::Compare

use List::Compare; my ($str1, $str2) = ("ABCDE", "BCDEO"); my @list1 = split //, $str1; my @list2 = split //, $str2; my @unique = List::Compare->new(\@list1, \@list2) ->get_symmetric_difference; say "Unique letters: @unique";

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (4)
As of 2024-04-25 06:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found