Find the answer to your Linux question:
Results 1 to 3 of 3
How can I extract the /staticfiles/NGS/Shared/StaticFiles/Photography/Images/POD/u/underwater-doubilet-697088-ga.jpg part from the line: <td class="body"><a href="/photography/enlarge/underwater-doubilet_pod_image.html"><img alt="Photo: Eel blenny peeking out of coral" src="/staticfiles/NGS/Shared/StaticFiles/Photography/Images/POD/u/underwater-doubilet-697088-ga.jpg"></a></td> ? Note: The pattern string is constant upto /staticfiles/NGS/Shared/StaticFiles/Photography/Images/POD/ ...
  1. #1
    Linux Newbie imranka's Avatar
    Join Date
    Dec 2007
    Location
    Kolkata
    Posts
    168

    How to extract pattern substring from a line



    How can I extract the

    /staticfiles/NGS/Shared/StaticFiles/Photography/Images/POD/u/underwater-doubilet-697088-ga.jpg
    part from the line:

    <td class="body"><a href="/photography/enlarge/underwater-doubilet_pod_image.html"><img alt="Photo: Eel blenny peeking out of coral" src="/staticfiles/NGS/Shared/StaticFiles/Photography/Images/POD/u/underwater-doubilet-697088-ga.jpg"></a></td>
    ?

    Note: The pattern string is constant upto
    /staticfiles/NGS/Shared/StaticFiles/Photography/Images/POD/
    The rest of it changes.

    Thank you.
    Last edited by imranka; 11-12-2008 at 07:04 AM. Reason: typo
    Imran
    Linux User #467555 | Debian Squeeze | Intel(R) Core(TM)2 Duo CPU 4500 @ 2.20GHz | 1 GB RAM | 320 GB SATA

  2. #2
    Linux Newbie imranka's Avatar
    Join Date
    Dec 2007
    Location
    Kolkata
    Posts
    168
    With cut I managed that:

    echo $line|cut -d= -f5|cut -d\" -f2
    Imran
    Linux User #467555 | Debian Squeeze | Intel(R) Core(TM)2 Duo CPU 4500 @ 2.20GHz | 1 GB RAM | 320 GB SATA

  3. #3
    Linux User
    Join Date
    May 2008
    Location
    NYC, moved from KS & MO
    Posts
    251
    echo $line | awk -F 'src="|"></a>' '{print $2}'

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •