Tagged Questions
The character-replacement tag has no wiki summary.
2
votes
5answers
673 views
vb.net character replacement in strings
How fast can I replace characters in a string?
So the background on this question is this. We have a couple of applications that communicate with each other and with client's applications through ...
1
vote
7answers
244 views
Converting space to “+” using C#
I want to convert a string to an url and, instead of a space, it needs a "+" between the keywords.
For instance:
"Hello I am"
to:
"Hello+I+am"
How should i do this?
0
votes
1answer
87 views
Javascript character restriction - invalid characters show up temporarily
I am using Javascript to restrict the characters of various text entry fields as a form of client-side validation as well as improved usability. I am using the following code to do this:
function ...
0
votes
2answers
70 views
Character Replacement: Break-Lines
I have a few areas in an application of mine that I have <textarea> tags so users can enter messages to one another. A problem with some messages had been plaguing me for a while, but I could ...
0
votes
2answers
100 views
How to replace a character that exists independently rather than with other characters in an NSString?
Ok lets suppose i've got this string:
R RATS ARE FAR
I want to replace the independent R with an X so to make:
X RATS ARE FAR
I've tried stringByReplacingOccurrencesOfString but that replaces ...
0
votes
5answers
167 views
Character replacement in string
I do need a working ASP.NET C# code to replace characters in a string.
My following code works fine but in case of input "a" it gives me an output as "678d", but in case of input "c" the output is ...