Please help. We need a c# function which will remove all special characters from a string.
Also, is it possible to change George's to George (remove both single quote and character s).
|
|
This method will removed everything but letters, numbers and spaces. It will also remove any ' or " followed by the character s.
|
|||||||||
|
|
Would help if we knew what a special character was. Here's a function though that will do the trick
|
|||
|
|
|
Its better to define a list of characters you want to keep instead of enumerating all others you dont want. For instance, using perlregexes For your other problem, you could define what to remove based on the previous word if you care about certain cases (like only removing |
|||||||
|