I'm using MPXJ to read mpp file. I have a resource assignment string as below:
string st = [[Resource Assignment task=Sign contract and update data resource=
X.C. Information Management start=Thu Jun 09 08:00:00 ICT 2014 finish=Thu Jun 05 17:
00:00 ICT 2014 duration=32.0h workContour=null]]
I want to get resource name from the above string (X.C. Information Management).
Currently, I use the code:
st.Split('=')[2].Replace(" start", ""); // return X.C. Information Management<br/>
I think use regular expression as well as, howerver, I don't have any ideas to implement it.
Please help me if you can.
Thanks
You can use a Regular Expression like this:
The information would be in the group not in the matched string: