0
votes
4answers
77 views
How to search/replace text with an “a href” wrapper in JavaScript?
I've converted html to a string, I'm able to use replace in that string to wrap the text with a link, and I can put that html back into the ID it came from.
My problem is that my …
0
votes
4answers
29 views
No overload for method Error
public static class StringHelper
{
public static string HyphenAndSpaceReplacer(this string s)
{
string newString = s;
newString.Replace(char.Parse(" ", "_"));
newString.Re …
0
votes
7answers
62 views
Deleting lines from multiple files
How do you search and delete a line (not replace) from multiple files in a directory tree? I have tried programs such as grepWin and Windows Grep but they replace lines, they do no …
0
votes
4answers
56 views
How can ruby do this task (Case-insensitive string search & replace in Ruby)?
I have some problem with replace string in Ruby.
My Original string : What the human does is not like what animal does.
I want to replace to: ==What== the human does is not like …
2
votes
5answers
98 views
Fast Javascript String Replacement
Hey there geniuses of SO!
This is for an autocomplete plugin that needs to accept data as an array of arrays and convert it using a format string (or regex). The format string cou …
0
votes
4answers
117 views
replace or remove one null (python)
Hi Everyones,
I would like to remove one null byte in a string, and sometime replace it with another char.
Like that :
string = "41 00 36 00 36 00 00 00 57 00 46 00 42 00 41 00 6 …
3
votes
2answers
49 views
MySQL Regex Replace
Does anybody know how I could have, in a MySQL query, the same behaviour as the Regex.Replace function (for instance in .NET/C#)?
I need that because, as many people, I would like …
0
votes
1answer
78 views
C# multiple replace works slow, any faster idea ?
return mystring.replace(/&/g, "&").replace(/>/g, ">")
.replace(/</g, "<").replace(/"/g, """);
The above is my code, and I guess s …
0
votes
1answer
40 views
complex batch replacement linux
I'm trying to do some batch replacement for/with a fairly complex pattern
So far I find the pattern as:
find '(' -name '*.php' -o -name '*.html' ')' -exec grep -i -n 'hello' {} + …
0
votes
4answers
95 views
How to replace whitespaces and tabs with nothing in C?
Hi,
I wrote this function:
void r_tabs_spaces(char *input) {
int i;
for (i = 0; i < strlen(input); i++)
{
if (input[i] == ' ' || input[i] == '\t' …
1
vote
3answers
74 views
HTML anchor replace with RegEx
I have HTML data which I'll be using in a client app. I need to Regex.Replace the <a> tags from
<a href="Bahai.aspx">Bahai</a>
to
<a href="#" onclick="proc …
2
votes
4answers
62 views
Replace placeholders with text - C ?
I use the below function to retrieve characters one by one from a FILE stream.
Now the text in that file will sometimes include places holders like !first_name! within the text. Wh …
4
votes
6answers
130 views
Replace first word with last word in C#
Hi
I want to replace the following line in C#. Replace first word with last word. I have to remove '[' and ']' from last word as well.
string oldString = "200 abc def abc [a18943 …
0
votes
2answers
42 views
Why does this regular expression not match adjacent occurences of newline?
I was trying to write a regexp to replace all occurrences of \n with \r\n unless the \n is already proceeded imediately by a \r. I'm doing this in Ruby 1.8.6 which doesn't support …
0
votes
5answers
89 views
Replace an anchor with its innerHTML
Hi,
I want to replace a link with its innerHTML, how is it done?
Example:
Bla bla bla <a href="#nogo">No link here</a> bla bla bla
has to become
Bla bla bla No li …
