Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~486 People Reached
Favorite Forums
Favorite Tags
perl x 3
Member Avatar for Commander Salam

I'm trying to parse a database, and assign a string value as the name of a hash... I'm not sure how to format such a request in perl. To be clear, I'm trying to make a hash such as %Jupiter using a variable string $planet. Any advice would be much …

Member Avatar for Comatose
0
129
Member Avatar for Commander Salam

Hi everyone, I'm trying to: (1) take an excel spreadsheet with two columns of data (2) convert to tab-delimited text file (3) import into perl as a hash I've managed to import as an array: open (LIST1, "list1.txt") || die "File not found\n"; while (<LIST1>) {push(@list1array, $_)}; close LIST1; However, …

Member Avatar for Commander Salam
0
357