i have an xml file with a lots of data, but it also contains a list of ids which looks like this
<test test-id="014727">
<not-test not-test-id="11111">
<not-test not-test-id="22222">
<not-test not-test-id="3333">
<test test-id="019727">
<test test-id="013727">
So far I have searched for test-id which gives me a list of all numbers, but it doesn't filter out additional info.
Using a regex in sublime text, how can I get a list of all the numbers after test-id
?
So from the example above I would have 3 lines of:
014727
019727
013727