Hi,
I have the following text:
started: Project: ProjectA, Configuration: Release Any CPU ------
I would like to get just the actual project name which in this example is "ProjectA".
I do have a
regular expression "started:(\s)Project:(\s).*,"
which will give me "started: Project: ProjectA," and then I can use further
…