1
I have a column that stores data in the following pattern #campo#=valor;#campo#=valor (and so on)
ex: '#aaaa#=1111;#bbbbb#=2222;#cccc#=33333'
However, they added ; within the value and I wanted to locate them, I need to find the records they hold ; and soon after anything other than the #
ex of record to be found: '#aaaa#=1111;#bbbbb#=2222;#cccc#=33;333'
The database is MSSQL.
You can use the following regex:
;[^#]and regex you can use based on this query: https://stackoverflow.com/a/29207975/9101590– Valdeir Psr