0
votes
1answer
36 views
Log4J – Runtime variable substitution
Log4J appears to have an annoying restriction – at runtime, variable substitution do not appear to work.
In this example
File: Log4j.properties
file_pattern=%d{ISO8601} %-5p …
0
votes
2answers
34 views
Shell aliasing multiple arguments
Is there a good way to do multiple substitutions for aliasing a command?
For example
alias cmd = 'ssh -R $1:$2:$1:$2 $3 | something {$1, $2, $3}'
cmd 127.0.0.1 1234 server
Some …
0
votes
2answers
45 views
Windows Shell Script: Can’t make string substitution working in subroutine…
Greetings dear Experts!
Could you please advice me on how to cope with the problem:
@echo off
cls
setlocal enabledelayedexpansion
path=%CD%;%path%
set NumberOfPages=553
rem s …
0
votes
2answers
21 views
Is there a way to access current session from within asp:net substitution control ?
Looks like context parameter of asp:net substitution control method is missing the current session once the page is output cached.
Aside from getting the substitution control's co …
2
votes
3answers
66 views
VIM substitution: Using the current line as the search string
Assuming the following text file, which is actually a data dump of funds and price statistics:
PBCPDF
05/01/2006
0.0000
0.0000
PBCPDF
0.0000
06/01/2006
0.0000
0.0000
PBCPDF
…
0
votes
1answer
188 views
Render a ASP.NET control in the master page code-behind
I'm using a Substitution control in my master page, and I want to render a user control content (related to the login area of my website) in the Substitution .
Seems like I must ha …
1
vote
4answers
111 views
Is $1 or $& faster for replacing a matched string using s/// in Perl?
Which one of these is cheaper?
$_ = 'abc123def';
s/\d+/$&*2/e;
say;
s/(\d+)/$1*2/e;
say;
1
vote
5answers
84 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-0 …
0
votes
5answers
121 views
Regular Expression for Conditional Substitution of Angle Brackets
Is it possible to create a single regexp to replace < and > with their entity equivalents?
s/<|>/<|>/
2
votes
2answers
134 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}{sp …
0
votes
1answer
49 views
rails - :joins sanitizing/substitution
is it possible to specify parameters for :joins similar way as for :conditions?
here is an example (sql code is irrelevant)
named_scope :threads, {
:joins => [" LEFT JOIN gr …
10
votes
4answers
184 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 t …
1
vote
5answers
142 views
How can I preserve whitespace when I match and replace several words in Perl?
Let's say I have some original text:
here is some text that has a substring that I'm interested in embedded in it.
I need the text to match a part of it, say: "has a substring …
1
vote
3answers
79 views
command substitution but without breaking output into multiple arguments
Is there a way to do command substitution in BASH shell without breaking output into multiple arguments?
I copy the path of some directory (from the location bar in a GUI file bro …
0
votes
2answers
41 views
What Letter and Number Mixups Need to be Considered?
I just had a user tell me his registration key didn't work. It took me quite a while to figure out that he entered the capital letter "O" instead of the number "0".
So I decided …
