Browse by Tags

Sorry, but there are no more tags available to filter with.
Extract only numbers from a String
18 December 07 12:57 PM | Madhivanan | 3 Comments   
Sometimes we may need to extract only numbers from a string. Usually I see people using while loop to check each and every character to see if it is a number and extract it Here is a different appraoch Declare @s varchar ( 100 ), @result varchar ( 100 Read More...