I have a file which includes thousands of lines like this:
node: { title: "0" label: "sub_401000" color: 76 textcolor: 73 bordercolor: black }
What I need is to extract the title value and label value. For example in the line above. I need to extract 0 and sub_401000. I can split them but it takes a lot of time. I want to know what would be the most efficient way to do this process?
Something like this should do (Note I assumed there to be one space between title: and quotes.
Output:
0
sub_401000