Tagged Questions
The substitution tag has no wiki summary.
25
votes
2answers
2k views
VIM: substitute with contents of register / lines range
I'm using VIM, and I want to substitute some placeholder text with a long string, that spans several lines, which is already written somewhere else in the file.
Is it possible to replace a pattern ...
12
votes
4answers
295 views
In VIM, is it possible to use the selected text in the substitute clause without retyping it?
Let's say I have a word selected in visual mode. I would like to perform a substitution on that word and all other instances of that word in a file by using s//. Is there a way to use the ...
11
votes
1answer
245 views
Post-cache substitution with Page.Render overriding
The context
I have an Asp .Net web application with some pages that inherit from a base class "BasePage".
This BasePage class inherits from System.Web.ui.Page and I've overriden the Render method so ...
11
votes
2answers
659 views
How do I avoid repetition in Java ResourceBundle strings?
We had a lot of strings which contained the same sub-string, from sentences about checking the log or how to contact support, to branding-like strings containing the company or product name. The ...
9
votes
3answers
2k views
What does the Perl substitution operator act on?
I have been programming in Perl, off and on, for years now, although only sporadically is it my primary language. Because I often go months without writing any perl, I rely heavily on my dog-eared ...
8
votes
2answers
64 views
Vim alter text as or immediately after it's put
Lately I've been yanking and putting a lot of code that needs to be altered somewhat (usually just a simple substitution). I can manually select it after it's pasted in, or for longer blocks I ...
7
votes
5answers
264 views
How can I use Perl's s/// in an expression?
I got a headache looking for this:
How do you use s/// in an expression as opposed to an assignment. To clarify what I mean, I'm looking for a perl equivalent of python's re.sub(...) when used in the ...
7
votes
7answers
7k views
How to use a variable in the replacement side of the Perl substitution operator?
I would like to do the following:
$find="start (.*) end";
$replace="foo \1 bar";
$var = "start middle end";
$var =~ s/$find/$replace/;
I would expect $var to contain "foo middle bar", but it does ...
7
votes
4answers
1k views
Vim: Repeat a command with substitution
In Unix the ^ allows you to repeat a command with some text substituted for new text. For example:
csh% grep "stuff" file1 >> Results
grep "stuff" file1
csh% ^file1^file2^
grep "stuff" file2
...
5
votes
1answer
151 views
efficient renaming of variables in first-order formulae
edit2: Taking the hint that de Bruijn indices might be easier to work with, I've reformulated much of the internal representation of formulae to use a mixed de Bruijn representation ala Connor ...
5
votes
5answers
147 views
Python: Replace ith occurence of x with ith element in list
Suppose we have a string a = "01000111000011" with n=5 "1"s. The ith "1", I would like to replace with the ith character in "ORANGE".
My result should look like:
b = "0O000RAN0000GE"
What could be ...
5
votes
3answers
2k views
Bash bad substitution with subshell and substring
A contrived example... given
FOO="/foo/bar/baz"
this works (in bash)
BAR=$(basename $FOO) # result is BAR="baz"
BAZ=${BAR:0:1} # result is BAZ="b"
this doesn't
BAZ=${$(basename ...
5
votes
3answers
205 views
How do I substitute with an evaluated expression in Perl?
There's a file dummy.txt
The contents are:
9/0/2010
9/2/2010
10/11/2010
I have to change the month portion (0,2,11) to +1, ie, (1,3,12)
I wrote the substitution regex as follows
$line =~ ...
5
votes
5answers
1k views
Inline regex replacement in perl
Is there a way to replace text with a regex inline, rather than taking the text from a variable and storing it in a variable?
I'm a perl beginner. I often find myself writing
my $foo = $bar;
$foo ...
5
votes
5answers
297 views
How to use a variable as modifier in a substitution
Is there a way to use a variable as modifier in a substitution?
my $search = 'looking';
my $replace = '"find: $1 ="';
my $modifier = 'ee';
s/$search/$replace/$modifier;
I need to use an array of ...
5
votes
3answers
573 views
substitution cypher with different alphabet length
I would like to implement a simple substitution cypher to mask private ids in URLs
I know how my IDs will look like (combination of upperchase ascii, digits and underscore), and they will be rather ...
5
votes
3answers
489 views
Substitutions inside links in reST / Sphinx
I am using Sphinx to document a webservice that will be deployed in different servers. The documentation is full of URL examples for the user to click and they should just work. My problem is that the ...
5
votes
3answers
3k views
How can I efficiently handle multiple Perl search/replace operations on the same string?
So my Perl script basically takes a string and then tries to clean it up by doing multiple search and replaces on it, like so:
$text =~ s/<[^>]+>/ /g;
$text =~ s/\s+/ /g;
$text =~ ...
4
votes
4answers
166 views
Any suggestions for improving (optimizing) existing string substitution in Perl code?
Perl 5.8
Improvements for fairly straightforward string substitutions, in an existing Perl script.
The intent of the code is clear, and the code is working.
For a given string, replace every ...
4
votes
3answers
234 views
How to substitute text from files in git history?
I've always used an interface based git client (smartGit) and thus don't have much experience with the git console.
However, I now face the need to substitute a string in all .txt files from history ...
4
votes
2answers
245 views
4
votes
1answer
268 views
How many substitutions took place in a Perl s///g?
Well, the title says it all. Small example:
perl -e '$s="aaabbcc";$c=()=$s=~/a/g;print"$c\n$s\n"' (m//g) outputs
3
aaabbcc
whereas perl -e '$s="aaabbcc";$c=()=$s=~s/a/x/g;print"$c\n$s\n"' (s///g) ...
4
votes
3answers
273 views
Non-sequential substitution in SymPy
I'm trying to use [SymPy][1] to substitute multiple terms in an expression at the same time. I tried the [subs function][2] with a dictionary as parameter, but found out that it substitutes ...
4
votes
5answers
877 views
How can I substitute the nth occurrence of a match in a Perl regex?
Following up from an earlier question on extracting the n'th regex match, I now need to substitute the match, if found.
I thought that I could define the extraction subroutine and call it in the ...
4
votes
2answers
959 views
how do I use c preprocessor to make a substitution with an environment variable
In the code below, I would like the value of THE_VERSION_STRING to be taken from the value of the environment variable MY_VERSION at compile time
namespace myPluginStrings {
const char* pluginVendor ...
4
votes
2answers
3k views
Perl qr// and substitution
I'm writing a tiny program that takes user input using Getops, and based on it, the program will either try to match a pattern against some text, or substitute text for what matched.
The problem I'm ...
4
votes
2answers
566 views
Vim substitution of a list of words with another same length list of words?
I need to substitute a list of words with with an equally long list of words.
So for example you have:
"a","b","c","d","e","f"
And you want to replace each word with the uppercase version of each ...
4
votes
3answers
646 views
Vi substitution command
Using vi, how do I substitute the current line number somewhere into the current line? For example, if the cursor is on line 10, I would like to put the number 10 somewhere on that line.
4
votes
7answers
2k views
Best way to substitute variables in plain text using PHP
What's the best way to take some plain text (not PHP code) which contains PHP-style variables, and then substitute in the value of the variable. This is kinda hard to describe, so here's an example.
...
3
votes
1answer
171 views
Maps (Substitutions) With Infinite Domains
Finite maps model substitutions with finite domains. I either need to emulate operations on substitutions with infinite domains, or find a suitable way to represent substitutions with infinite ...
3
votes
1answer
206 views
replace newline character in bash variable?
I am trying to understand the "cdargs-bash.sh" script with cdargs packages. And I have a question about in the following function:
function _cdargs_get_dir ()
{
local bookmark extrapath
# if there is ...
3
votes
2answers
126 views
How do I substitute overlapping matches with a Perl regex?
I want to find all occurences of "BBB" in a string and substitute them with "D". For example, I have "ABBBBC" and want to produce "ADBC" and "ABDC". (First substitute the first BBB, and then ...
3
votes
3answers
959 views
Escape all double quotes inside a single quoted string with Regex [closed]
Possible Duplicate:
Regular Expression to escape double quotes inside single quotes
I need a regex (no other language!!, best would be perl syntax REGEX or PCRE syntax REGEX) to replace all ...
3
votes
6answers
175 views
How do I use variables to do substitution in Perl?
I have several text files, that were once tables in a database, which is now disassembled. I'm trying to reassemble them, which will be easy, once I get them into a usable form. The first file, ...
3
votes
3answers
381 views
Substitute the n-th occurrence of a word in vim
I saw other questions dealing with the finding the n-th occurrence of a word/pattern, but I couldn't find how you would actually substitute the n-th occurrence of a pattern in vim. There's the obvious ...
3
votes
3answers
482 views
Weird behavior of substitution in Mathematica
My question is: why doesn't the following work, and how do I fix it?
Plot[f[t], {t, 0, 2*Pi}] /. {{f -> Sin}, {f -> Cos}}
The result is two blank graphs. By comparison,
DummyFunction[f[t], ...
3
votes
3answers
801 views
Using C# to detect whether a filename character is considered international
I've written a small console application (source below) to locate and optionally rename files containing international characters, as they are a source of constant pain with most source control ...
3
votes
2answers
3k views
Javascript variable substitution for json
Greetings all,
I have some JSON code that looks like this:
{ playlist: [
'URL goes here',
{
// our song
url: 'another URL goes here'
}
]
}
I'd like to stick the ...
3
votes
2answers
2k views
Log4J – Runtime variable substitution
Log4J appears to have an annoying restriction – at runtime, variable substitution does not appear to work.
In this example
File: Log4j.properties
file_pattern=%d{ISO8601} %-5p %m%n
...
3
votes
5answers
204 views
How do I use Perl to intersperse characters between consecutive matches with a regex substitution?
The following lines of comma-separated values contains several consecutive empty fields:
$rawData =
"2008-02-06,8:00 AM,14.0,6.0,59,1027,-9999.0,West,6.9,-,N/A,,Clear\n
2008-02-06,9:00 ...
3
votes
3answers
1k views
how to replace latex macros with their definitions (using latex)
How can I replace all occurrence of user defined latex macros with their definitions?
For example, given this file
old.tex
\newcommand{\blah}[2]{#1 \to #2}
...
foo \blah{egg}{spam} bar
...
how to ...
3
votes
6answers
267 views
How can I replace all the text before the match in a Perl substitution?
I am reading each line of an input file (IN) and printing the line read to an output file (OUT) if the line begins with one of the patterns, say "ab", "cd","ef","gh","ij" etc. The line printed is of ...
3
votes
3answers
2k views
Perl: Loop through a file and substitute
I simply wanna read in a logfile, do a search and replace, and then write out the changes to that same logfile.
What's the best practice way of doing this in Perl?
3
votes
3answers
318 views
Why is $1 empty in my substitution?
I am trying to put the stuff within parentheses into the value of a src attribute in an img tag:
while(<TOCFILE>)
{
$toc_line = $_;
$toc_line =~ ...
2
votes
2answers
93 views
Vim: Parsing address fields from all around the globe
Intro
This post is long, but I consider it thorough. I hope this post might be helpful (addresses) to others while teaching complex VIM regexes. Thank you for your time.
Worldwide addresses:
...
2
votes
3answers
154 views
What would be the best approach to this substitution in Vim?
A several line document has a header/title section and then about 10 listings under each. I need to put the header/title info in with each of the listings so that they can be properly uploaded into a ...
2
votes
1answer
50 views
How do you insert an HTML block (with python) into a currently working website…?
Right now I have a solution that works from looking at some examples. It looks like this
pagetemp = string.Template(open("index_template.html").read())
#print pagetemp.template
f = ...
2
votes
2answers
205 views
Need replace Syntax for Ant's propertyregex Task
I'm running up against my failure to understand regex substitution patterns and Apache Ant's limited documentation on propertyregex. My problem is that I need to take the ${user.name} property and ...
2
votes
3answers
66 views
perl pattern matching one by one and process it
I have a string
[something]text1[/something] blah blah [something]text2[/something]
I need to write a Perl script to read what is in the [something] tag, process it to "text-x", and put it back ...
2
votes
1answer
119 views
Replace the very first matching pattern on later lines in Vim
I have a long text where some lines need to be repeated later.
I put tags like this in the text:
{F1}text need to be repeated later{/F1}
so I can add multiple {F1}{/F1} to later sections and put ...