[Solved] C# Regex questions [closed]


You could try the below regex.

@".*?(?= = CreateObject)|(?<=MoveObject\().*?(?=,)"

OR

@"\S+?(?= = CreateObject)|(?<=MoveObject\().*?(?=,)"

DEMO

3

solved C# Regex questions [closed]