Hi, I have a snippet looking something like the below.
string bodyTypeAssemblyQualifiedName = "XXX.XX.XI.CustomerPayment.Schemas.r1.CustomerPayments_v01, XXX.XX.XI.CustomerPaym" +
"ent.Schemas.r1, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ac564f277cd4488" +
"e";
I'd like use regular expression in C# to get it to:
string bodyTypeAssemblyQualifiedName = null;
I've tried using a RegEx like the below but it doesn't match the newlines ...
bodyTypeAssemblyQualifiedName\s=\s(?<location>.*?);