Anyone have a suggestion how I might be able to write a REGEXP in SQLITE that uses the same functionality as \K
in say Teradata.
Example:
text = "height"=>"5","xxxxxxxxxxx"
Regexp:
SELECT * FROM xxxxx where xxxxx = 'xxxxxxx'and xxxxxx
where REGEXP '"height".+?"\K\d+'
This returns the integer 5.
This regepx works fine in Teradata but not SQLITE. I am using DB Browser (SQLite)
Thanks in advance.