I need to separate comparison operators (==, !=, >, <, >=, <=) from the string value.
I can have following possible combinations
== 1
== 100.24
== 120/numberOfRows
<= 1/3
>= 2232
I tried below regex pattern but it not working as expected.
Pattern = "(<[=>]?|==|=<|=>|>=?|\\&\\&|\\|\\|) (\\w*\\.?\\w+\\.?\\/?\\w+)".r
"""(<[=>]?|=[<>=]|>=?|!=|&&|\|\|)\s+(.+)""".r?