How could you remove all characters that are not alphabetic from a string?
What about non-alphanumeric?
Does this have to be a custom function or are there also more generalizable solutions?
|
How could you remove all characters that are not alphabetic from a string? What about non-alphanumeric? Does this have to be a custom function or are there also more generalizable solutions?
| |||
|
feedback
|
|
Try this function:
Call it like this:
Once you understand the code, you should see that it is relatively simple to change it to remove other characters, too. You could even make this dynamic enough to pass in your search pattern. Hope it helps. | |||||||||||||
feedback
|
|
Parameterized version of G Mastros' awesome answer:
Alphabetic only:
Numeric only:
Alphanumeric only:
Non-alphanumeric:
| |||||
feedback
|
|
This is an excellent function, but I think that if wanted to strip all non-letters and non-numbers, you would want '^a-z0-9' (versus '^a-z^0-9', which would leave ^ in the string). | |||
|
feedback
|
|
I don't think there is any SQL based functions which can be easily used to do this. But here is an article on writing the function you're looking for: SQL STrim Function | |||
|
feedback
|
|
I knew that SQL was bad at string manipulation, but I didn't think it would be this difficult. Here's a simple function to strip out all the numbers from a string. There would be better ways to do this, but this is a start.
Output
Round 2 - Data-Driven Blacklist
Output
My challenge to readers: Can you make this more efficient? What about using recursion? | ||||
feedback
|
|
I put this in both places where PatIndex is called.
for the custom function above RemoveNonAlphaCharacters and renamed it RemoveNonAlphaNumericCharacters | ||||
|
feedback
|