I need to capture the ID in between the {} INCLUDING the {} themselves from the below text. The ID changes and all the words around it change but the info I need will always be between the curly brackets.
Navigate to the [systemUnderTest] system and log in with the {testID_jobRole} test ID.
Input = "Navigate to the [systemUnderTest] system and log in with the {testID_jobRole} test ID."
Output = System.Text.RegularExpressions.Regex.Match(Input,"(?<=\{).*(?=\})").Value.Trim()