Hi,
Is there a good way to convert Regular Expression into LIKE inside a Function (MSSQL)? The sproc does not get more complicated than this:
(country\=)(?<Country>[\w\d]+)(\&sessionid\=)(?<SessionId>.+)
The groups will not be used in the LIKE, they are there for another purpose.
I would like to use this inside a sproc late like:
SELECT * FROM [Table]
WHERE test_regex(regex, 'text') = 1
Where the regex is a part of [Table]