Imagine I have String in C#: "I Don’t see ya.."
I want to remove (replace to nothing or etc...) these "’" symbols.
Any ideas how to do this? :)
|
|
|||
|
|
|
That 'junk' looks a lot like someone interpreted UTF-8 data as ISO 8859-1 or Windows-1252, probably repeatedly. ’ is the sequence C3 A2, E2 82 AC, E2 84 A2.
We then do it again: in Windows 1252 this sequence is E2 80 99, so the character should have been U+2019, RIGHT SINGLE QUOTATION MARK (’) You could make multiple passes with byte arrays, Encoding.UTF8 and Encoding.GetEncoding(1252) to correctly turn the junk back into what was originally entered. You will need to check your processing to find the two places that UTF-8 data was incorrectly interpreted as Windows-1252. |
||
|
|
|
|
Regex.Replace("The string", "[^a-zA-Z ]",""); That's how you'd do it in C#, although that regular expression ([^a-zA-Z ]) should work in most languages. [Edited: forgot the space in the regex] |
||
|
|
|
|
If you really have to do this, regular expressions are probably the best solution. I would strongly recommend that you think about why you have to do this, though - at least some of the characters your listing as undesirable are perfectly valid and useful in other languages, and just filtering them out will most likely annoy at least some of your international users. As a swede, I can't emphasize enough how much I hate systems that can't handle our å, ä and ö characters correctly. |
||
|
|
|
|
By removing any non-latin character you'll be intentionally breaking some internationalization support. Don't forget the poor guy who's name has a "â" in it. |
||
|
|
|
|
This looks disturbingly familiar to a character encoding issue dealing with the Windows character set being stored in a database using the standard character encoding. I see someone voted Will down, but he has a point. You may be solving the immediate issue, but the combinations of characters are limitless if this is the issue. |
||
|
|
|
|
Either use a blacklist of stuff you do not want, or preferably a white list (set). With a white list you iterate over the string and only copy the letters that are in your white list to the result string. You said remove, and the way you do that is having two pointers one you read from (R) and one you write to (W):
if comma is in your whitelist then you would in this case read the comma and write it where à is then advance both pointers. UTF-8 is a multi-byte encoding, so you advancing the pointer may not just be adding to the address. With C an easy to way to get a white list by using one of the predefined functions (or macros): isalnum, isalpha, isascii, isblank, iscntrl, isdigit, isgraph, islower, isprint, ispunct, isspace, isupper, isxdigit. In this case you send up with a white list function instead of a set of course. Usually when I see data like you have I look for memory corruption, or evidence to suggest that the encoding I expect is different than the one the data was entered with. /Allan |
||
|
|
|
|
If you would like to remove all non-ASCII characters (this is an assumption), you could try:
Or if you just want them replaced with something like ?'s, you can use the ASCIIEncoding class (from Encoding.ASCII Property):
|
||
|
|
|
|
Test each character in turn to see if it is a valid alphabetic or numeric character and if not then remove it from the string. The character test is very simple, just use...
Please there are various others such as...
|
||
|
|
|
|
How did that junk get in there the first place? That's the real question. |
||||
|
|
|
Consider Regex.Replace(your_string, regex, "") - that's what I use. |
||
|
|
|
The ASCII / Integer code for these characters would be out of the normal alphabetic Ranges. Seek and replace with empty characters. String has a Replace method I believe. |
||
|