Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: transliteration d flag not working as expected

by BrowserUk (Patriarch)
on Jun 09, 2013 at 11:20 UTC ( #1037920=note: print w/replies, xml ) Need Help??


in reply to transliteration d flag not working as expected

as the d flag should cause unmatched items to be deleted?

No. The /d flag is specified as: "Delete found but unreplaced characters.". Ie. Any character unmatched by the searchlist is left untouched

Since your search and replace lists are equal length, any characters matched will always be replaced, so nothing will ever be deleted.

Deletions will only occur if the replacement list is shorter than the search list; including the frequently used case of a null replacement list.

In addition, if you also specify /c, then only the t (ie. pre-translated f) will remain:

$s = 'alter'; $s =~ tr[this][flip]cd; print $s;; t

So, to get the effect you expected you could do two passes:

$s = 'alter'; $s =~ tr[this][flip]cd; print $s; t $s =~ tr[this][flip]; print $s;; f

With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.

Log In?
Username:
Password:

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

How do I use this? | Other CB clients
Other Users?
Others lurking in the Monastery: (2)
As of 2023-04-01 08:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?