I need to lift the YouTube link from some text which looks like this:

[youtube=http://www.youtube.com/v/qpbAe2HyzqA&hl=en&fs=1&]

Can anyone help?

link|improve this question

60% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Try something like this:

\[youtube=(https?://[^\]]+)\]

link|improve this answer
This did the trick. Thanks, Andrew. – kidrobot Jul 7 '09 at 9:02
feedback

You could use awk.

awk ' FS="[" {print $(NF) } ' file_with_text > temp.txt
awk ' FS="]" {print $(NF-1)} ' temp.txt > results.txt

It is in two parts to make it clearer and because awk is strange like that. If you want just the URL and not the youtube= first then you will need to run an awk with the file separator like FS="youtube=". Also awk can be strange with the input; if file_with_text has text on the first line it may act strange and if the file ends with the file separator you chose then awk may error (just add any text other than the FS symbol to the end of the file).

Edit: Removed the cat function. Seems less clear as a pedagogical answer, but it is more concise.

link|improve this answer
1  
Another unnecessary use of cat: instead of cat FILE | awk PATTERN FILE, just use awk PATTERN FILE. – Seth Johnson Jul 7 '09 at 1:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.