Hi all,
Actuall there is a field given varchar(100) Now from that i need to get all the fields that contains anything other than numbers
for example:
1.2
1.3
0.0%
demo1.0,
output:
0.0%
demo1.0,
I think its easy to get this by using regular expression,
But i didn't find any material for how to use regular expressions in sql server
Help me in solving this.
Actuall there is a field given varchar(100) Now from that i need to get all the fields that contains anything other than numbers
for example:
1.2
1.3
0.0%
demo1.0,
output:
0.0%
demo1.0,
I think its easy to get this by using regular expression,
But i didn't find any material for how to use regular expressions in sql server
Help me in solving this.
Comment