Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to replace apostrophes with a string, for some reason the method just doesn't find the apostrophe in the string. Here is the URL that just doesn't seem to work:

"/news/2012/march/cameron’s-crackdown-on-whiplash-–-why-the-minimum-speed-requirement-is-oddly-suspicious"
.Replace("'", "'");

Does anyone have any ideas?

share|improve this question
are you definate you are assigning the value back to the string? .Replace on its own doesnt save the value back to the original string – RhysW Jan 21 at 16:07
Check the font in your question's code. You can see it's a different character, there are apostrophes, single quotes, (back)ticks... – Honza Brestan Jan 21 at 16:08
3  
The problem is that ' does not equal . – Groo Jan 21 at 16:08
1  
You don't show what you are doing with the string. Are you expecting the string to change, or do you realise String.Replace returns a new string? – Daniel Kelley Jan 21 at 16:08
possible duplicate of C# string replace does not work – dasblinkenlight Jan 21 at 16:09
show 1 more comment

6 Answers

up vote 2 down vote accepted

Strings are immutable types. You can't change them. Even if you think you change them, you create a new strings object. String.Replace() method also returns a new string by the way.

Try to assign in a new string reference with "’" not "'".

string str = "/news/2012/march/cameron’s-crackdown-on-whiplash-–-why-the-minimum-speed-requirement-is-oddly-suspicious".Replace("’", "'");
share|improve this answer

The replace doesn't work because and ' are not the same character.

And maybe you forgot to capture the result, your code is too short to tell.

share|improve this answer
+1 this is the answer (assuming OP understands that Replaces returns new string). – Alexei Levenkov Jan 21 at 16:10

Since strings are immutable, you need to assign your result back to another string.

string original = "/news/2012/march/cameron’s-crackdown-on-whiplash-–-why-the-minimum-speed-requirement-is-oddly-suspicious";
string updated = original.Replace("’","'");

(note also that ` and ’ are not the same)

share|improve this answer

and ' are different characters. You also need to assign it somewhere (strings are immutable), Replace() returns new string:

myString = myString.Replace("’", "'");
share|improve this answer

Your are replacing ' instead of . Also remember that strings are immutable, so you must assign the result to a new variable in case you want to store it.

share|improve this answer

Just assign the result to a variable

var str = "...".Replace("'", "'");
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.