Afternoon,I'm trying to parse a text field. I have this kind of data:407339 1pc [HAHNS - 10/4/2011 2:51:53 PM] 410710 4pcs [HAHNS - 10/4/2011 2:52:09 PM]]
I need to grab all instances of the jobs, in this case 407339 and 410710. I have this which grabs the first one:substring(mr.Note_Text,charindex(' ',mr.Note_Text)-charindex(' ',mr.Note_Text),charindex(' ',mr.Note_Text))My question is how do get all the instances of it?ThanksLaura