Attempting to grasp the nuances between regular expressions in JavaScript and .NET. After perusing a few articles on the subject,
Differences between C# and JavaScript Regular Expressions? https://www.codeproject.com/Questions/626385/Regex-pattern-for-csharp-and-js
My takeaway from these discussions is that while .NET supports certain extended characters, JavaScript has its limitations.
Can one safely assume that if a regular expression functions in JavaScript, it will work in .NET as well?
End goal: Curating a collection of universal regular expressions compatible with both JavaScript and .NET.