The substitution tag has no wiki summary.
0
votes
1answer
23 views
Awk act as a substitution
I have a list of arrays with different information on which I am doing an awk.
number location length value
1 2 40 0.96
--- 5 45 0.97
4 5 47 ...
1
vote
2answers
35 views
Ruby: eval with string interpolation
I don't understand, why eval works like this:
"123 #{456.to_s} 789" # => "123 456 789"
eval('123 #{456.to_s} 789') # => 123
How can I interpolate into a string inside eval?
Update:
Thank ...
0
votes
1answer
46 views
Perl regular expression — dynamic replacement using eval, literal $1 being used in replacement [duplicate]
I am using eval to handle a dynamic replacement regular expression.
The value capture on the left side ($1) is not being used on the right side of the regexp.
Any help would be appreciated.
...
1
vote
3answers
44 views
awk gsub replacing a string having double quotes
I have a huge XML file with longer lines (5000-10000 characters per line) with following text:
Pattern="abc"
and I want to replace it with
Pattern="def"
As the line sizes are huge, I have no ...
2
votes
2answers
37 views
TCL variable name substitution
I have several lists:
AllMaxMins_LC1 AllMaxMins_LC2 AllMaxMins_LC3 and so on
Now I want to go through each list like this:
for {set i 1} {$i < 10} {incr i} {
foreach SubList ...
1
vote
1answer
23 views
Multiple find-and-replaces, recursively
I'm looking for an efficient way to perform a large (say 100) number of find-and-replace operations across multiple files. By find-and-replace, I mean a simple substitution (e.g. in sed or vim syntax, ...
0
votes
1answer
27 views
Replace {myParameter} by its value in a string
I am wondering an easy way to resolve the {myParameterX} by its value in a string.
I have a section in my xml (obviously simplified for the post) that holds the parameters definitions and a set of ...
1
vote
3answers
45 views
re.sub in Python 3.3
I am trying to change the text string from the form of file1 to file01. I am really new to python and can't figure out what should go in 'repl' location when trying to use a pattern. Can anyone give ...
3
votes
1answer
35 views
Substitute class method with a string in Python
Lets say that I want to do this
hashlibAlgo = "md5"
Hash= hashlib.**"hashlibAlgo"**("blah blah blah").hexdigest()
How can I do that. If I substitute the name of a method with a string it obviously ...
0
votes
2answers
166 views
sed error: “invalid reference \1 on `s' command's RHS”
I run several substitution commands as the core of a colorize script for maven.
One of the sed commands uses a regular expression which works find in the shell as discussed here. The current (not ...
0
votes
1answer
34 views
sed error “Invalid range end”
I run this substitution command on Ubuntu 12.04.
$ sed -e "s/([a-zA-Z0-9.-/\\ :]+)/\1/g"
However, the following error is raised.
sed: -e expression #1, char 27: Invalid range end
I can ...
3
votes
2answers
49 views
understanding SUB used in an AWK command
I need to understand how this command is working:
awk 'BEGIN{while(a++<30)s=s " "};{sub(/^.{6}/,"&" s)};l' myfile
I understand how the first part (the expression in the BEGIN{} section) ...
0
votes
2answers
48 views
Replacing with sed wont work
I have a file called "washington", with capital spelled in 4 different
ways: Capital, capital, Capitol, capitol. Use the "sed" command
to replace all of them at once, with the correct spelling: ...
1
vote
1answer
31 views
Numpy rows substitution
I am new to Numpy and I am not an expert programmer at all...
This is my issue:
I have array a and array b (b < a).
I want to substitute some rows of a with all the rows of b (in order).
The ...
0
votes
2answers
74 views
Awk gensub transformation
echo "0.123e2" | gawk '{print gensub(/([0-9]+\.[0-9]+)e([0-9]+)/, "\\1 * 10 ^ \\2", "g")}'
gives me "0.123 * 10 ^ 2" as a result as expected.
Is there a way to actually tell it to calculate the term ...
0
votes
1answer
30 views
MATLAB substituting for symbolic variables
x = sym('x');
P = [1; sin(2*pi*x); cos(2*pi*x); sin(4*pi*x)];
I want to get a matrix Q such that
Q = [1; sin(2*pi*1/8); cos(2*pi*1/8); sin(4*pi*1/8)];
That is, how can ...
2
votes
2answers
59 views
Variable substitution/expansion - safe way in perl
I need one very simple line-based (space delimited) "language", what in general will look for some predefined "actions" (1st field), and execute defined perl subs with the arguments (other fields in ...
3
votes
1answer
71 views
Bash script echo is performing a strange substitution
Realizing bash is very picky about double quotes, single quotes, brackets etc. -- I ran across a strange behavior today and can't explain it. The problem itself is easy to avoid but I don't ...
-1
votes
4answers
87 views
Regular expression to match after first % and before last %
I need a regular expression that can match what is inside the "%" marks in the following string:
1) Bla bla bla %yada yada yada% bla bla.
Even if the form is like this:
2) Bla bla bla %yada ...
0
votes
2answers
31 views
Get from string to variable in bash
I'm writing a bash script to automate some sysadmin stuff. I start with checking that a number of variables are the defined. The way I'm doing that now is like so:
function is_defined {
if [ -z ...
1
vote
2answers
141 views
Visual basic substitution cipher
I am trying to create a substitution cipher using Visual Basic. I am new to programming and struggling so would appreciate some support please.
The cipher should do the following:
Ask the user for ...
0
votes
2answers
20 views
List of substitutions in external file
I need to pass a string against an external file that contains a list of substitutions to perform at every occurrence.
The substitution file will look like this (I'm open to suggestions on the ...
0
votes
2answers
79 views
PHP - regex/function to replace the nth ocurrence of a character within a string
I have a SQL query string like this:
SELECT * FROM `oc_product` WHERE `manufacturer_id` = ? AND `date_added` < ? `product_id` IN (?) AND `price` > ? ORDER BY `product_id` ASC;
This is handed ...
0
votes
1answer
30 views
Escaping in nested substitute() command results in ^@ characters in 7.2
I've got a document:
"""I'm a multiline string.
I say
"hey, single line string",
and it says
"\they, multiline string,\nI can do multiple lines\ntoo".
and I say,
"it's cute that you think ...
1
vote
2answers
55 views
How to get the substituted text of perl (s//)?
I use the following code to do substitution. Is there a way to retrieve the text substituted? In this example, I want to get the string _5p_outsuffix.txt.
/tmp$ ./main.pl
xxx_5p_outsuffix.txt
/tmp$ ...
0
votes
3answers
81 views
How to use a variable as the substitution text in perl (s//)?
I want to use a variable as the substitution text in perl (s//)? Apparently, the following code does not work. Is there a way to do what I want?
~$ ./subsuffix.pl
xxx_$1_outsuffix.txt
...
0
votes
0answers
31 views
Amount of different letters used in substitution cipher change number of possible decryptions?
I have this question I've been wracking my brain over, my math in this area isn't too crash hot.
Stay for instance you had a mono-alphabetic cipher but only utilised 19 of the possible 26 letters of ...
1
vote
4answers
84 views
How to perform math operations only in lines with numbers?
I have a file where only some lines start with numbers. I want to perform simple math operations in those lines.
For example, say those lines are in this format:
010 - 0050 - 20500
and I want to ...
0
votes
0answers
62 views
Making $1 uppercase in substitution
I'm trying to move our web-based help files from an existing IIS server onto an instance of Tomcat, because we need TomCat for a specific application. I know I could probably plug tomcat into IIS, but ...
0
votes
2answers
47 views
Simultaneous subsitution in Perl
Below is a script where I am trying to reverse and then substitute (A=>T, T=>A, G=>C, C=>G).
VERSION 1
#!/usr/bin/perl
my $str="AAAAAGCTTGC";
$str_rev=scalar reverse ("$str"),"\n";
print"My ...
0
votes
3answers
73 views
Prolog substitution[Solved]
How can I replace a list with another list that contain the variable to be replaced. for example
rep([x, d, e, z, x, z, p], [x=z, z=x, d=c], R).
R = [z, c, e, x, z, x, p]
the x to z and z doesn't ...
0
votes
2answers
140 views
Perl: Substitute text string with value from list (text file or scalar context)
I am a perl novice, but have read the "Learning Perl" by Schwartz, foy and Phoenix and have a weak understanding of the language. I am still struggling, even after using the book and the web.
My ...
-4
votes
3answers
263 views
Python, substitution cipher [closed]
I need to write a substitution cipher for the digits 0,1,2,3,...,9 substitutes each digit in 0,1,2,3,...,9. It can be represented as a 10 digit string specifying how each digit in 0,1,2,3,...,9 is ...
0
votes
1answer
63 views
Replace array with values in string in Ruby within ( ), instead of [ ]
If you do something as follows:
1.9.3p194 :005 > array = [ 1, 2]
=> [1, 2]
1.9.3p194 :007 > puts "Array when output in \"\" is #{array}"
Array when output in "" is [1, 2]
=> nil
...
0
votes
1answer
55 views
How is type resolution done?
I'm new to the Java world and I have some problems figuring out how Java decides which method to call when there is polymorphism. Can you help me figure out how it works with this example?
I tried the ...
0
votes
1answer
45 views
How can i make substitutions of the same word in Perl on the same xml line?
I'm working on an XML Document, I need to open it and transform to uppercase some specific tag values on the same line. If I have the same word it only does the substitution for one of them although ...
-1
votes
2answers
149 views
replace value with in “ ” with null value and need to obtain string after “ ”
i have n number of strings like this :
"AC_def" 123 dffgg fdffv ,
"av bgg" 1234 frfvf gfg ,
"av cvc bgg" 1234 frfvf gfg.
i need to replace the value with in quotes with null value and need only ...
-1
votes
2answers
75 views
a simple string substitution does not work
Below is my codes:
my $string1 = '<td><a href="http://www.aaa.com/downloads/details.aspx?FamilyID=a1b2c3">abcdefg</a><br />(123456)</td>';
my $string2 = ...
0
votes
0answers
163 views
Binary fails to be validated for non-public API usage in libxml2
we're going to submission of the app , but we got an unexpected error:
"The app references non-public symbols in Payload/libxml2.2.dylib: UCNV_FROM_U_CALLBACK_STOP, UCNV_TO_U_CALLBACK_STOP".
I have ...
0
votes
2answers
31 views
How do I substite a value from a dataframe in R with a value from another section of the data frame? [duplicate]
I have imported a data set into R & have discovered one outlier. I want to do specific substitution on this initially imported data. Specifically, my data looks like the following:
Adhesive ...
3
votes
2answers
296 views
“bash: Bad substitution” when using code in .sh file
Why does
for i in *.mp4; do ffmpeg -i "$i" "${i/.mp4/.mp3}"; done
work, if I use it in console, but give me a "Bad substitution" error, if I use the same code in a .sh file?
for i in *.mp4
do
...
0
votes
3answers
166 views
Perl Regular Expression to insert/substitute in a string at specific places
Given a url the following regular expression is able insert/substitute in words at certain points in the urls.
Code:
#!/usr/bin/perl
use strict;
use warnings;
#use diagnostics;
my @insert_words = ...
0
votes
3answers
235 views
Perl Use of uninitialized value in substitution
Why is this generating the error:
Use of uninitialized value $match in substitution (s///) at ...
my $sub = 0; #added
my $m; #added
open (FH1, "<FILE1.txt") || die $!;
open (FH2, ...
0
votes
1answer
66 views
Substituting values of a matrix
Say I have the following two matrices:
>> x = [1 4 3; 6 4 3; 6 9 3; 2 4 3; 5 4 0; 5 3 1; 6 4 7];
>> y = [0 0 1; 1 1 0; 1 1 0; 0 1 1; 0.2 0.8 0.54; 1 1 1; 0 0 0];
Where you can think of ...
3
votes
4answers
98 views
Can a string be converted to an instruction?
This code in Java:
for (Integer x=1; x <= 3; x++) {
y = "array[" + Integer.toString(x) + "] = a" + Integer.toString(x) + ".getText();";
System.out.println(y);
}
prints out:
array[1] ...
0
votes
2answers
193 views
Adding Line Break After pattern in VIM
I have a compressed css file and I will add an empty line after a }.
How can I do this in Vim?
-1
votes
5answers
76 views
how are multiple backslashes in this example perl regex substitution handled?
I'm looking at a piece of perl regex code that makes a substitution like the following:
$testrange =~ s/\./\\\./g;
If $testrange is initially equal to say 123.456.789. then what should the result ...
0
votes
1answer
41 views
Perl substitution fails with multiline
I have two web pages, one page has been created by hand, the other has been published with visual studio 2010 (.aspx). I want to modify the content of these files, replacing a bunch of script tags by ...
2
votes
1answer
99 views
How to make this Java (Android) String substitution?
I don't understande why this is not working:
(method is taken from HERE on SO).
private String MakeSizeHumanReadable(int bytes, boolean si) {
int unit = si ? 1000 : 1024;
if (bytes < unit) ...
1
vote
1answer
51 views
Add confirmation to search and replace using regex in Python
I have a small python script that loops through a bunch of files and in each file apply a few regex. I would like to add a confirmation step in which the old and the new text are shown. Is there any ...