vote up -1 vote down star

Why do none of these seem to work?

String.Replace("/", "_");
String.Replace("//", "_");
String.Replace(((char)47).ToString(), "_");

The string named "FileName" still says "MyFile 06/06/09"

flag

80% accept rate
Please put some effort into formulating a proper question. – Blixt Jun 12 at 14:39
could you give the full line you are testing please? – dove Jun 12 at 14:40
What exactly isn't working? Compile error? Not replacing the '/'? Please add some more details. – Hawker Jun 12 at 14:40
Is that a question? How doesn't it work? What's your input string? What does it return? What did you expect it to return? A quick test here successfully transformed "/Hey/" into "_Hey_". – Jason Musgrove Jun 12 at 14:41
1  
(1) You should really put more effort into your question. (2) This issue (the immutability of strings in c#) has came up quite a number of times already on Stackoverflow, in all sorts of contexts. Did you try to search before asking the question? – DrJokepu Jun 12 at 14:43
show 2 more comments

6 Answers

vote up 21 vote down check

Are you assigning the FileName.Replace to something? It returns the new FileName, it doesn't actually change it.

string fileName = FileName.Replace("//", "");
link|flag
vote up 10 vote down

You probably want to do this:

FileName = FileName.Replace("//", "")...
link|flag
vote up 5 vote down

Try this:

FileName = FileName.Replace( "/", "_" );
link|flag
vote up 4 vote down

If that is your actual code then you need to actually assign it back to the value as in...

FileName = FileName.Replace("//", ""); 
FileName = FileName.Replace("/", ""); 
FileName = FileName.Replace(((char)47).ToString(), "_");
link|flag
vote up 1 vote down
Filename = FileName.Replace("//", ""); 
Filename = FileName.Replace("/", ""); 
Filename = FileName.Replace(((char)47).ToString(), "_");
link|flag
vote up 1 vote down

One more thing I'll add is to check your quote characters...if you paste from Word then you'll end up with the wrong characters. Of course, you'll get a compile-time error if that's the case...

link|flag

Your Answer

Get an OpenID
or

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