I would like to combine a few expressions to get 3 different results per line.
Example:
element\data\elements.data|44a0b61d1952973f52ad54cb911c0e3e|33095223
.*?element(?:(?!\|).)* retrieves element\data\elements.data
(?<=\|)(.*?)(?=\|) retrieves 44a0b61d1952973f52ad54cb911c0e3e
(?<=\|)[0-9]*\r retrieves 33095223
But for me to get these I currently am doing 3 different RegEx, and I would like to limit it down to only one to get the 3 results I need and set them to different variables.
I have looked into doing a Dictionary but those only allow 2 variables, while I need 3.
a,bandcmatcha,bandcrespectively. How do you matchabc?Dictionary<string,Collection<type>()>, and if all of your parameters for retrieval are unique that would make a great key.