I've got a code like:
SELECT config_id FROM config
Which returning me strings:
1S100I20C1P
1S8I9C1P
1S80I48C1P
I just need to get number between S and I, for 1 string its gonna be 100, for second string its gonna be 8 etc. I know regexp should work here, but can't really find the matching pattern. Thank You.