Thread Teil-Hash mit Grep auf Keys? (4 answers)
Opened by LanX- at 2008-10-23 04:59

Ronnie
 2008-10-23 18:08
#115727 #115727
User since
2003-08-14
2022 Artikel
BenutzerIn
[default_avatar]
Hallo Rolf,

sieht ein wenig pythonesque aus! Wobei das wieder ein Punkt ist, wo ListComprehensions in Perl schön wären:
Code: (dl )
1
2
Hash = { 'a': 1, 'b': 2, 'c': 3, 'aa': 4 }
Hash = dict([(k, v) for k, v in Hash.items() if re.compile(r'a').search(k)])


Gruß,
Ronnie

EDIT: Beispiel an Problemstellung angepasst

View full thread Teil-Hash mit Grep auf Keys?