I have SQL Where clause to run on DataView, but C# DataView does not accept BETWEEN operator. I need to convert any BETWEEN operator in query string to And, example:
Before: Year BETWEEN 2010 and 2014
After: Year >= 2010 and Year <= 2014
I tried this pattern
$.+ BETWEEN .+ AND .+/
But it didn't work, also not replacing anything so far
.Replace("BETWEEN", "AND")?BETWEEN .+ AND .+could replace some very different scenarios, including the AND in a WHERE clause