#!/usr/bin/perl use strict; my $data = '\player_0\STOMP\frags_0\0\ping_0\ 146\team_0\0\mesh_0\Male + Soldier\skin_0\TOPModels.Skins.CCSM\face_0\TOPModels.Skins.Legs\ngse +cret_0\false\player_1\animals\frags_1\0\ping_1\ 374\team_1\1\mesh_1\M +ale Soldier\skin_1\TOPModels.Skins.SFMe\face_1\TOPModels.Skins.SWATTe +x0\ngsecret_1\false\player_2\Rigodon\frags_2\0\ping_2\ 159\team_2\1\m +esh_2\Male Soldier\skin_2\TOPModels.Skins.SFMe\face_2\TOPModels.Skins +.SWATTex0\ngsecret_2\false\queryid\64.1'; my %hash = split(/\\/, $data); foreach (keys %hash) { print "$_ = $hash{$_}\n"; } exit;

In reply to Re: Split line with corresponding columns and values by gloryhack
in thread Split line with corresponding columns and values by foogod

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.