So I found these links which are related for the task. First using python, second using c#, third using Perl
Now I'm too new with Perl and what I want to do is work with some json streams from twitter. What I'm looking at is this:
..E","location":"Hollywood, Los Angeles, CA ","screen_name":"i..
How do I find "location": using regex and then assign a variable to contain Hollywood, Los Angeles, CA?
sub get_location {
# pseudo code:
# look for "location":"xxxxxxxxxxxxxxxx"
# assign $tmp_loc = Hollywood, Los Angeles, CA (in this case)
# return $tmp_loc; }