I need to check the existence of following characters in a given string:
characters =('N', 'E', 'M', 'H', 'T', 'V', 'L', 'C' )
string = 2449.555N06704.2855EM0701H071T44.098V11.764L0.372C1
And if string contains these characters, then need to split them into values as following to insert them in details_Tb:
N = 2449.7183
E = 06704.2855
T = 0701
H = 071
T = 44.098
V = 11.764
L = 0.372
C = 1
Any solution to this?
If you are looking for this result
result:
then try this query..
EDIT1 : As per the comment, if you want to insert the these values to detail_Tb table, please check the code below: