Tagged Questions
The text-replacement tag has no wiki summary.
3
votes
4answers
385 views
how to fill text templates using xslt
I have an XML file with information, for example:
<letter>
<name>Test</name>
<age>20</age>
<me>Me</me>
</letter>
And then I have an text ...
3
votes
2answers
201 views
Replacing file content in PHP
I need a function just like preg_replace but instead of strings I need it to work with files / file content.
2
votes
3answers
138 views
Sed multiline replacement question
I am having a sed replacement issue and am hoping one of you will be able to help me. I am sure I am missing something simple.
So I have a file containing text and a quote. The quote itself could be ...
2
votes
3answers
133 views
Is there an efficient way to perform hundreds of text substitutions in ruby?
I'm trying to use a list of hundreds of common misspellings to clean some input before searching for duplicates. It's a time-critical process, so I'm hoping that there's a quicker way than having ...
1
vote
4answers
62 views
Java on-the-fly string replacement
I've seen something like this in code
somestring = "Today is {0}, tomorrow is {1}";
I know that it'll put values into the string from another variable, but how do I do it?
Update: As there is ...
1
vote
4answers
112 views
How to replace the Nth appearance of a needle in a haystack? (Python)
I am trying to replace the Nth appearance of a needle in a haystack. I want to do this simply via re.sub(), but cannot seem to come up with an appropriate regex to solve this. I am trying to adapt: ...
1
vote
1answer
117 views
Replace C++ pointer field access symbol to a period, using sed
I'm trying to replace all occurrences of -> with .. I've tried the following:
sed -i s/->/./g licensewizard.cpp
But this gives me an error:
sed: -e expression #1, char 3: unterminated `s' ...
1
vote
1answer
557 views
How Do I Convert Pipe Delimited to Comma Delimited with Escaping
I am fairly new to scala and I have the need to convert a string that is pipe delimited to one that is comma delimited, with the values wrapped in quotes and any quotes escaped by "\"
in c# i would ...
1
vote
2answers
793 views
Loop through text nodes inside a div
I am trying to do a text replace, but to do so, i need to loop through the text nodes of a div.
Each Div upon clicking, loads via ajax it's appropriate content. But then I need to do text-replacing ...
1
vote
4answers
185 views
Accessing the currently selected element's content in a html(val) statement in jQuery?
I have a several links whose text content I'd like to replace with a automatically generated image based on the text content.
So currently it looks like this:
<a href="blabla" class="mLink">
...
1
vote
5answers
2k views
Can I use Win32 COM to replace text inside a word document?
I have to perform a large number of replacements in some documents, and the thing is, I would like to be able to automate that task. Some of the documents contain common strings, and this would be ...
0
votes
1answer
29 views
Replace text with control markup using Visual Studio macro
I'm trying to replace some text in an ASPX page with a literal control using a Visual Studio (2010) Macro, but it seems that the control markup is being modified on replacement.
I've got an ASPX page ...
0
votes
2answers
66 views
Remove empty lines from txtfiles, remove spaces from start and end of line
Which would be a better:
sed -e /^$/d *.txt
sed 'g/^$/d' -i *.txt
How do i remove spaces from beginning and end of each lines in the text file?
0
votes
3answers
32 views
JS tiny text replace problem
Under normal circumstances I would simply look this up, but I don't have my JS reference so...
I have this code:
var text = document.createTextNode(alt);
var empty = document.createTextNode("");
...
0
votes
2answers
154 views
How to replace characters in a string in PHP?
I have a problem in PHP. I've a string like this:
"qqslsqpsq"
And I want to replace every 's' with a separated value, e.g.:
First 's' -> pos: 2 -> 'web'
Second 's' -> pos: 4 -> 'book'
Third 's' ...
0
votes
1answer
124 views
How do I find specific words in elements with specific classes with Javascript/jQuery?
I have a class for DIVs called .post and I'd like to find words inside that element and replace them with something else. That words must also not be inside elements with other classes (.tiptrig and ...
0
votes
2answers
355 views
Jquery text replace for specific characters on entire site
Basically what I need to do is replace question marks throughout the copy of an entire ecommerce site that has TONS of product descriptions.
The problem that I am getting is that quote marks are ...
0
votes
3answers
1k views
how to make text replacement in automator (regex)
I am making an Automator application and I need to replace some text based on a certain criteria. I am wondering if there is an Automator action for performing a regex text replacement.
If not, I ...
0
votes
1answer
56 views
Convert all image links in a website directory (on mac)
My task is to take a directory of website files, including html, css, and non-text image files, and change all image paths from relative paths to a universal cdn path. This is on a mac.
My starting ...
0
votes
4answers
141 views
javascript regular expression for pretty formatting user text
I am doing a research here to find you the best way to format user text messages.
A sample of what I am trying to achieve:
1) user sends this message:
Doctor,
I would like to have
an ...
0
votes
2answers
40 views
I have an array on strings in php. I want to replace all occurrences of those strings with another string within a block of text
I have an array that contains several domain names. I need to replace those domains inside blocks of text (forum posts) with another string, if any of them actually appear inside that forum post.
...
0
votes
1answer
468 views
By passing div id, can i change target of text replacement?
I am using the code below to replace text inside a div. But I need to loop through a specific div, instead of everything on the page, that is the div's text nodes...
I just do not understand how to ...
0
votes
6answers
752 views
Find and Replace in Files - UTF8
Searching for a free application for commercial usage that allows find/replace in multiple files (regular expressions are nice but not a must), that supports opening and saving in UTF-8.
Tried a few ...
0
votes
2answers
1k views
Getting sed to Replace Text With Argument
Alright, I know this is a simple question, but I can't seem to get this sed command to work. I'm trying to get a text file and replace one bit of it from placeholder text to a study code. The study ...