LinuxQuestions.org
Visit Jeremy's Blog.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 04-13-2012, 09:40 PM   #1
tquang
Member
 
Registered: Jul 2010
Posts: 44

Rep: Reputation: 0
Extract string in one line


Hi have string
Code:
<?xml version="1.0" encoding="utf-8"?><playlist version="1" xmlns:jwplayer="http://developer.longtailvideo.com/"><trackList>    <track>        <title><![CDATA[V́ Một Người Ra Đi]]></title>        <creator><![CDATA[Ưng Hoàng Phúc]]></creator>        <location><![CDATA[http://stream31.gonct.info/d1662f31a7693fbf14f8f697ce5795ba/4f88d04d/NhacCuaTui123/Vi Mot Nguoi Ra di - Ung Hoang Phuc [NCT 21634274224197812500].mp3]]></location>        <info><![CDATA[http://www.nhaccuatui.com/nghe?M=PJNGXDuPk0]]></info>    <image><![CDATA[http://static.nhaccuatui.com/generals/logo-player.jpg]]></image>    <jwplayer:adv.enable>true</jwplayer:adv.enable>    <jwplayer:adv.link><![CDATA[http://www.nhaccuatui.com/clickqc/wtfpwnghn/wefdkmgois]]></jwplayer:adv.link>    <jwplayer:adv.file><![CDATA[http://stc.nct.nixcdn.com/imgqc/2012/04/vfresh_plinner_0404-634691279827076250.swf?bid=wtfpwnghn&skey=wefdkmgois&view=yes]]></jwplayer:adv.file>    </track></trackList><trackList>    <track>        <title><![CDATA[Gọi Tên Em Trong Đêm]]></title>        <creator><![CDATA[The Men]]></creator>        <location><![CDATA[http://stream42.gonct.info/3902a50be3234d3ed4077a44f2f3bc16/4f88d04d/NhacCuaTui184/Goi Ten Em Trong dem - The Men [NCT 586345336925975812508].mp3]]></location>        <info><![CDATA[http://www.nhaccuatui.com/nghe?M=RrJkLmWoVs]]></info>    <image><![CDATA[http://static.nhaccuatui.com/generals/logo-player.jpg]]></image>    <jwplayer:adv.enable>true</jwplayer:adv.enable>    <jwplayer:adv.link><![CDATA[http://www.nhaccuatui.com/clickqc/wtfptojaw/wefdkmgois]]></jwplayer:adv.link>    <jwplayer:adv.file><![CDATA[http://stc.nct.nixcdn.com/imgqc/2012/04/h&s_plinner_1302_final-634693320016533750.swf?bid=wtfptojaw&skey=wefdkmgois&view=yes]]></jwplayer:adv.file>    </track></trackList><trackList>    <track>        <title><![CDATA[Nắng Có C̣n Xuân]]></title>        <creator><![CDATA[ Nhóm Mặt Trời]]></creator>        <location><![CDATA[http://stream62.gonct.info/557114bb0d7c1d2f88fca23f70dad7c2/4f88d04d/NhacCuaTui033/Nang co con xuan - Nhom Mat Troi [NCT 4564256566].mp3]]></location>        <info><![CDATA[http://www.nhaccuatui.com/nghe?M=dFpjf69OL0]]></info>    <image><![CDATA[http://static.nhaccuatui.com/generals/logo-player.jpg]]></image>    <jwplayer:adv.enable>true</jwplayer:adv.enable>    <jwplayer:adv.link><![CDATA[http://www.nhaccuatui.com/clickqc/wtfpezpyb/wefdkmgois]]></jwplayer:adv.link>    <jwplayer:adv.file><![CDATA[http://stc.nct.nixcdn.com/imgqc/2012/04/vaioe_300x250_nhacucatui_phase2-634695633595440000.swf?bid=wtfpezpyb&skey=wefdkmgois&view=yes]]></jwplayer:adv.file>    </track></trackList><trackList>    <track>        <title><![CDATA[Trái Tim Không Ngủ Yên]]></title>        <creator><![CDATA[Mỹ Linh, Bằng Kiều]]></creator>
And i need all strings like:
Code:
http://stream62.gonct.info/557114bb0d7c1d2f88fca23f70dad7c2/4f88d04d/NhacCuaTui033/Nang co con xuan - Nhom Mat Troi [NCT 4564256566].mp3
How can I do it? Thank you very much.
 
Old 04-13-2012, 10:43 PM   #2
towheedm
Member
 
Registered: Sep 2011
Location: Trinidad & Tobago
Distribution: Debian Stretch
Posts: 612

Rep: Reputation: 125Reputation: 125
Is you xml string (the first one) all on one line or multiple lines? XML tags are normally on separate line. This is important on how the strings you want are extracted. Could you post the schema as it is in the file.
 
Old 04-14-2012, 12:41 PM   #3
David the H.
Bash Guru
 
Registered: Jun 2004
Location: Osaka, Japan
Distribution: Arch + Xfce
Posts: 6,852

Rep: Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037
The best way to handle xml documents is to use an actual xml parser. I suggest you check out xmlstarlet, or a language like perl that has an xml module available.

Trying to do such work with something like awk or sed is likely to be much trickier to get working right. They just aren't designed for handling such data schemas.
 
Old 04-14-2012, 01:03 PM   #4
xuta
LQ Newbie
 
Registered: Apr 2011
Location: Hanoi, Vietnam
Distribution: Ubuntu, OpenSuSE, Debian, Gentoo
Posts: 24

Rep: Reputation: Disabled
Hi Vietnamese guy, I am Vietnamese, too

I suppose you string store in nct.txt, so for extract the link you want, use command below

Code:
cat nct.txt | awk -F"<location>" '{print $4}' | grep -o "http.*mp3"
 
Old 04-15-2012, 09:30 PM   #5
tquang
Member
 
Registered: Jul 2010
Posts: 44

Original Poster
Rep: Reputation: 0
Thank all my friends. I was rewrote new script for downloading.
However, i have new question after downloaded file: move/rename multi file

Original file name:
Quote:
Cho Nguoi Tinh Nho - Tuan Vu [NCT 48634443728911412500_128].mp3
Nang Chieu - The Son [NCT 46633943472496991250].mp3
Chot thay dem buon - Chu Bin [NCT 77634000197958750000].mp3
To new name:
Quote:
Cho Nguoi Tinh Nho - Tuan Vu.mp3
Nang Chieu - The Son.mp3
Chot thay dem buon - Chu Bin.mp3
 
Old 04-15-2012, 09:48 PM   #6
Tinkster
Moderator
 
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
Blog Entries: 11

Rep: Reputation: 927Reputation: 927Reputation: 927Reputation: 927Reputation: 927Reputation: 927Reputation: 927Reputation: 927
Does that help?

Code:
echo Cho Nguoi Tinh Nho - Tuan Vu [NCT 48634443728911412500_128].mp3 | sed -r 's/ \[[^]]+\]//'
Or a "naive" approach w/o regex using bash ...
Code:
testing="Cho Nguoi Tinh Nho - Tuan Vu [NCT 48634443728911412500_128].mp3"
echo ${testing%% [*}.mp3

Last edited by Tinkster; 04-15-2012 at 10:03 PM.
 
Old 04-21-2012, 05:14 AM   #7
tquang
Member
 
Registered: Jul 2010
Posts: 44

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by Tinkster View Post
Does that help?

Code:
echo Cho Nguoi Tinh Nho - Tuan Vu [NCT 48634443728911412500_128].mp3 | sed -r 's/ \[[^]]+\]//'
Or a "naive" approach w/o regex using bash ...
Code:
testing="Cho Nguoi Tinh Nho - Tuan Vu [NCT 48634443728911412500_128].mp3"
echo ${testing%% [*}.mp3
I have list link in file list.txt
Contents in list
Code:
http://site/com/Cho Nguoi Tinh Nho - Tuan Vu [NCT 48634443728911412500_128].mp3
http://site/com/Nang Chieu - The Son [NCT 46633943472496991250].mp3
http://site/com/Chot thay dem buon - Chu Bin [NCT 77634000197958750000].mp3
I want after downloaded, file will be storage in /path/file/saved/ and renamed to
Code:
Cho Nguoi Tinh Nho - Tuan Vu.mp3
Nang Chieu - The Son.mp3
Chot thay dem buon - Chu Bin.mp3
And my code
Code:
cat list.txt | while read url; do wget -P /path/file/saved/ --continue "${url}"; done
How do I continue for that?
Thank you.

Last edited by tquang; 04-21-2012 at 05:16 AM.
 
Old 04-21-2012, 05:42 PM   #8
Tinkster
Moderator
 
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
Blog Entries: 11

Rep: Reputation: 927Reputation: 927Reputation: 927Reputation: 927Reputation: 927Reputation: 927Reputation: 927Reputation: 927
I'd do something like this ...

Code:
while read url
do
  outfile=$(echo ${url}| sed -r -e 's/ \[[^]]+\]//' -e 's@^.*/@@')
  wget -O /path/file/saved/${outfile} -c "${url}"
done < list.txt
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
C++ text file line by line/each line to string/array guru11 Programming 5 12-29-2011 09:34 AM
extract a string within a string using a pattern adshocker Linux - Newbie 1 11-04-2010 10:44 PM
C++ text file line by line/each line to string/array Dimitris Programming 15 03-11-2008 08:22 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 12:03 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration