Hi all,
I have a column that has all numerical values. But there are some special characters too that I am trying to strip out.
Input:
",
",
23
34
45",
",
56",
",
78
I need it to be:
23
34
45
56
78
Can anyone help me in achieving this in RegEx. Or any other way possible?
Thanks