Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a xml file with a 1 line long string I want to extract the number after "" like the following example, I want to get 131

.....<yt:duration seconds='131'/>....

the "...." here means the substrings before and after "", which are long with different characters, numbers and marks.

how to use sed for extracting the matching number? thanks

share|improve this question
Seems like a duplicate of this thread. – Kitchi Oct 25 '12 at 14:00

2 Answers

up vote 0 down vote accepted

Use grep, not sed:

grep -o "<yt:duration seconds='[0-9]\+'/>" file.txt | cut -f2 -d"'"
share|improve this answer

A sed solution (using @ as delimiter):

sed -r "s@.*<yt:duration seconds='([0-9]+)'/>.*@\1@" file.txt

For OSX, replace -r with -E

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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