I have some data for which i want to select the LAST VALUE BEFORE THE DELIMITER
Example- A -> B -> C -> D
In this case, i want to select "C" so i used a positive look ahead but BQ doesnt allow look aheads/behinds
Here is the Regex, (?=[^\n>]-[^\n-]$)[^\n-]*
Can someone help me replace the look ahead?