2
votes
3answers
110 views
Wrapping a chunk of text with tags using PHP
I'm trying to allow a user (using Wordpress) to insert a jquery slideshow gallery (http://www.queness.com/resources/html/slideshow/jquery-slideshow.html) based on a faux tag. For e …
1
vote
3answers
169 views
Perl: replace pattern from the current position until the end of a line
In Perl, how can I replace a pattern from the current position (the position of the last replacement) until the end of a line?
I have done all of these replacements in a single li …
1
vote
1answer
31 views
replacing special characters in SQL 2000
Hi, how can I replace special characters in my data files (special characters such as bullet points, percent sign, hyphen etc) ?
Thanks
0
votes
1answer
54 views
How to modify/update a set of html files with a standard header and footer
I have a set of html files that I want to modify by replacing the header and footer. The contents of each file is different and I would like to use a regular expression (or similar …
0
votes
6answers
61 views
Good Search Tool?
Does anyone have a good search tool for OS X?
I am looking for a way to search entire large directories for information in files (.g, .cpp. .txt, other txt with different extensi …
3
votes
4answers
141 views
String Find/Replace Algorithm
I would like to be able to search a string for various words, when I find one, i want to split the string at that point into 3 parts (left, match, right), the matched text would be …
2
votes
2answers
24 views
Creation of mass phrase search for website domain
I need to replace a single text phrase across my entire website domain with another one. What is the best way to do a mass search/ replace?
0
votes
2answers
38 views
MySQL - Query to move part of 1 field’s contents to a new field
I have a table called cartypes which currently has 2 fields: id & type. I am adding subtype and I want to move the contents after the dash - from the field called type and put …
0
votes
3answers
38 views
How to replace markup in html files stored on unix/solaris servers?
I'm looking for a way to grab a piece of markup that is in a 1000+ html files published on unix servers (running via apache) and replace the markup with either empty nodes or alter …
1
vote
3answers
102 views
java: search & replace in a Stream
How do I do on-the-fly search & replace in a Java Stream (input or output)?
I don't want to load the stream into memory or to a file.
I just see the bytes passing by and I ne …
0
votes
1answer
70 views
How can I do a find & replace using PDFSharp?
Hi All,
I have a PDF file with 3 static place holders that I need to replace.
The place holders are using the following format:
[item1ToReplace]
[item2ToReplace]
[item3ToRepal …
2
votes
5answers
474 views
Find and replace in files - .NET friendly regular expression syntax
I'm looking for a decent tool that can do search and replace over multiple files, with regular expression syntax I'm use to in C#. Normally I would do this in Visual Studio, except …
3
votes
5answers
431 views
Awk/Sed: How to do a recursive find/replace of a string?
How to I find and replace every occurrence of:
subdomainA.example.com
with
subdomainB.example.com
in every text file under the /home/www/ directory tree (recursive find/repl …
-2
votes
2answers
103 views
How to find and replace all occurrences of a string recursively in a directory tree?
Using just grep and sed, how do I replace all occurrences of:
a.example.com
with
b.example.com
within a text file under the /home/user/ directory tree recursively finding an …
0
votes
4answers
136 views
Replace www.example.com w/ <a href=”http://www.example.com”>www.example.com</a>
I am not very good at regex, but I need to convert the following example from this
<li>Creations by Carol - www.driedfloralcreations.com</li>
to
<li>Creations …
