The substitute tag has no wiki summary.
0
votes
0answers
14 views
'TypeError: expected string or buffer' when performing re.sub on beautiful soup result set iteration
content_a is a beautiful soup result set (ie the type is <class 'bs4.element.ResultSet'>) that is made up of values whose type is <class 'bs4.element.Tag'>.
If i print 'content_a' i ...
1
vote
4answers
36 views
How to use sub() to match pattern over multiple lines?
I am using the sub() function to replace ===Something here=== with <h2>Something here</h2>.
The following is working:
line = sub(r"(===)([a-zA-Z\s]*)(===)", r"<h2>\2</h2>", ...
1
vote
2answers
61 views
How to remove 0 from a string using sed
I have string "001.036.020" and I need to convert it to "1.36.20".
Saying other words I need to remove all "0" before digit. Is it possible to do this using sed?
3
votes
3answers
94 views
capturing an expression as a function body in R
I'm trying to write a program that takes an expression as an input and returns a function with that expression bound as its body.
caller <- function (expr, params) {
Function <- function ...
0
votes
1answer
36 views
substituting a string with cmd with wildchar
i have a text file with me which contains some lines
line1
line2
helloabcd
line4
i want to create a batch file to edit the helloabcd line with say %this% but i dont know what abcd is all i know is ...
0
votes
1answer
27 views
Substitute the value of a variable in a weblogic command
There is a command
application = raw_input('Enter the application name you want to deploy\t\n')
connect('weblogic','weblogic','t3://host:port')
deploy(appName='application',
...
0
votes
1answer
49 views
Perl substitute from right to left
I have a string:
test1.domain.com.test1.domain.com
I want to replace the string domain.com in the right side for result:
test1.domain.com.test1
When using Perl string replace pattern
myString = ...
9
votes
1answer
109 views
match.call called in wrong environment when eval’ing
I tried implementing a function let with the following semantics:
> let(x = 1, y = 2, x + y)
[1] 3
… which is conceptually somewhat similar to substitute with the syntax of with.
The following ...
0
votes
1answer
73 views
Multiple substitutions with a single regular expression with caring about position in perl
i want to read in a file, with lines of the form: "string1 string2 string3" and to substitute several chars off it, (but every chair should get substitue once)
with for example these rules: tsch=> ...
0
votes
1answer
11 views
R Raster package, substitute
I'm trying to reclassify a RasterLayer to turn all 0's to NA. I've tried (1) Reclassify, (2) Subs, and (3) replace NA statements below:
Method, error
con1RC<-reclassify(con2, matrix(c(0, 0, NA))
...
0
votes
1answer
93 views
Perl: Replace multiple strings in text line with foreach loop and substitute
This is my goal:
Find specific files and save
a) foldername
b) filename with full path
For each file, use the file name and folder name to replace two text strings in a file and write the result ...
5
votes
1answer
80 views
Use eval(substitute()) on multiple expressions
I asked a question before about How to take in text/character argument without quotes. In the scenario I provided in that question, the number of arguments is fixed, so the number of ...
0
votes
1answer
72 views
How to substitute/replace bytes in binary file with shell
is it possible to substitute bytes from a binary file myfile from one specific position to another with dd in a loop or is it more comfortable using another command?
The idea is to replace a block B ...
0
votes
2answers
33 views
How to express variable through other in SAGE
Is there way to express mathematical expression through variable defined earlier in SAGE?
For example if I have variable a = b + c, I want SAGE rewrite expression b + c + d as a + d.
Thank you.
0
votes
0answers
59 views
Replace byte block in a file with dd
Since I am quite new to dd and shell scripting I have difficulties implementing the following into my code:
Problem
I have a binary file with NX * NZ * sizeoffloat bytes that contains a varying ...
0
votes
0answers
138 views
Substitute function in (Excel) not replacing text
I am trying to use the substitute function in excel to change the 05 in the first column to 04 as follows:
06-05NG22D021 --------------- 04NG22D021
06-05NG22D021-KP01 ---------- 06-04NG22D021-KP01
...
0
votes
1answer
18 views
How to substitute n characters in each line of a file by position
I have to anonymize fields in a file which have no delimiters.
In my case, by chance, those fieds are the one after the other.
exemple :
1234LASTNAME1¤¤¤¤¤¤¤¤¤¤¤FIRSTNAME1¤¤¤¤¤¤¤¤¤¤2013-01-01
...
0
votes
5answers
54 views
Is is possible to substitute the matched pattern in vim?
Every time before I replace pattern1 with pattern2, I usually use /pattern1 to confirm the regex is the right one. When doing the actual substitution, however, I have to use ...
1
vote
1answer
121 views
lapply, specifiying and plotting multiple variables from a data frame
I'm not having any success combining lapply, substitute, print, plot, and list in a function statement. Can someone direct me to a way to revise this code? I'd like to:
automate plotting some but ...
2
votes
2answers
76 views
filtering html tag in linux with sed
I'm having a problem trying to filter the following string in unix
<option value="20121209/YvegRascYTGxmWLUIrqW/por121209130030.jpg">2012-12-09 13:00h</option>
into:
...
0
votes
2answers
111 views
Vi: substitute — how to define the searching object
In my source code, it has the following for example:
menu = add_menu_item ((char **)HW_KIND, 21);
.
.
if(get_idx_by_str ((char **)HW_KIND, prev->column_section, 21, 0) < get_idx_by_str ((char ...
1
vote
3answers
144 views
R: Substitute values in a dataframe under conditions
I have got a dataframe made up by three columns (see example in the code). the first column contains categories (a), the second column the number of observations (b) and the third column the average ...
2
votes
3answers
155 views
Replacing an escaped single quote with an escaped double quote in Python
I'm trying to replace all single quotes with double quotes, but leave behind all escaped single quotes. Does anyone know a simple way to do this with python regexs?
Input:
"{ 'name': 'Skrillex', ...
0
votes
1answer
46 views
sed returning empty line on second pass
I have a configuraton file that I am editing and on the first pass the is correctly changed but on the next two lines sed returns the lines blank.
The lines to be edited are
...
0
votes
1answer
61 views
sed change url in configuration file subing in a variable
I need to change a line in a configuration file. The line is
http://127.0.0.1:8080/subfolder/subfolder.
I am collecting the URL from the client and storing it in a file called variables.sh and ...
1
vote
2answers
70 views
Adding words in front and at the end of line in VIM [duplicate]
Possible Duplicate:
Replace while keeping certain “words” in vi/vim
Let's say I have several lines like
$adv_id;
$am_name;
$campaign_ids;
...
2
votes
2answers
69 views
Substituting everything from = to end of the line in VIM
Let's say I have several lines like:
$repeat_on = $_REQUEST['repeat_on'];
$opt_days = $_REQUEST['opt_day'];
$opt_days = explode(",", $opt_days);
... and so on.
Let's say I use visual mode ...
1
vote
2answers
60 views
Change case of line not matching a pattern
I have a large file in this format:
>Abc1 | SOME TEXT
atgcgnntcagacagacaa
>Abc2 | SOME DIFFERENT TEXT
nnatgcgatgacatacanggaaga
>Abc3 | SOME OTHER TEXT
gcatgacagagacagatgacaggcacacg
All I am ...
1
vote
2answers
51 views
Substitute method arguments in Ruby
how to bind a set of arguments to a variable and then use the variable as argument for a method, e.g.
my_method(arg_a, arg_b, arg_c, arg_d, arg_e)
should be expressed like something like that
...
0
votes
1answer
77 views
Generate placeholders for numbers with random digits in sentence
Problem
I need to create placeholders in a sentence (string).
Example
My son is 6 years old and my dad is 61 years old.
My son is #0 years old and my dad is #1 years old.
This is only one ...
0
votes
1answer
65 views
VIM how to substitute with offset
The search command in vim allows you to place the cursor relative to the search results. For example, /hello/b+2 places the cursor on the first l.
How do I do that with the substitute command?
...
3
votes
2answers
81 views
bash, substitute part of variable by another variable
#!/bin/bash
SUNDAY_MENU=BREAD
MONDAY_MENU=APPLES
TODAY=MONDAY
ECHO "I want ${${TODAY}_MENU}" # does not work, bad substitution
ECHO "I want ${`echo $TODAY`_MENU}" # does not work, bad ...
0
votes
1answer
190 views
MySQL equivalent of Oracle's SUBSTITUTE function - Space replace issue
I have created this small function(Similar to oracle's substitute function), it works fine for most characters but I can't figure out why it does not replace spaces...
Can somebody throw some light ...
0
votes
2answers
56 views
Substitute 2 Non-default lines regular expression in Perl
I'd like to replace the reg expression of "hh:mm:ss" of 2 strings in Perl with "xx:xx:xx" How can I accomplish this?
Code:
use strict;
use warnings;
my $l="12:48:25 - Properties - submitMode : 2";
...
1
vote
2answers
96 views
Search lines of a file and replace variable with a value in an array and loop through until array has no more values
I think I'm close here but there is a key piece eluding me.
template.txt
I am a @file
that needs
the word file replaced
with each value in an array
subvalues.txt
word1
word2
word3
...
1
vote
1answer
72 views
Excel: How can I retrieve a formula from the output of a cell and evaluate it?
For example:
I have this formula in A1: 2*x+3*x
and this formula in B1: =SUBSTITUTE($A$1,"x",E1) so my output in B1 is 2*1+3*1
Now, what I'd like is to have that operation evaluated so that it ...
5
votes
3answers
9k views
Replace all commas in a string javascript
I have a string with multiple commas, and the string replace method will only change the first one:
var mystring = "this,is,a,test"
mystring.replace(",","newchar", -1)
>>"thisnewcharis,a,test"
...
1
vote
2answers
65 views
Variables in a list
I would like to put a set of variables in a list and do a substitute for each of them.
Example:
let mylist = ['var1','var2','var3']
for i in range(0,2)
let mylist[i] = substitute(mylist[i], '\.', ...
4
votes
3answers
4k views
sed regex substitute
I want to add a + (plus sign) before all the ocurences of images name in a huge file, using sed.
This is an example of one line:
DAUSSI-H22-14K White ...
3
votes
3answers
319 views
Vim Substitution
I always wanted to know, how you can substitute within given parameters.
If you have a line like this:
123,Hello,World,(I am, here), unknown
and you wnat to replace World with Foobar then this is ...
2
votes
6answers
188 views
Python Replace an Undetermined length of Text
I have a string like this:
Hi. My name is _John_. I am _20_ years old.
and I'd like to convert it into this:
Hi. My name is <b>John</b>. I am <b>20</b> years old.
I did ...
1
vote
2answers
185 views
Python: Using template and substitute in subroutine
I have a template file cotaining $DATE and $TIME to be substituted by the current values.
This works fine as long as I have evruthing in the main program.
However I want to put the substitution bit ...
2
votes
2answers
135 views
How to initialize libraries by their string names in cluster?
I want to initialize libraries in cluster by their names represented as strings.
This code works fine:
library(snowfall, rlecuyer, rsprng)
sfInit(parallel = TRUE, cpus = 4, type = "SOCK")
...
2
votes
1answer
2k views
Vim variable length wildcard search and replace?
I'm trying to clean a Frontpage-generated html file, and there are a ton of tag attributes I need to delete, like:
style="font-size: 10.0pt; font-family: Trebuchet MS; color: blue"
style="color: ...
4
votes
3answers
329 views
Compare datasets in R
I have gathered a set of transactions in a CSV file of the format:
{Pierre, lait, oeuf, beurre, pain}
{Paul, mange du pain,jambon, lait}
{Jacques, oeuf, va chez la crémière, pain, voiture}
I plan ...
1
vote
0answers
199 views
Vim: visually select a section of text, then delete (or replace) every instance of it in the document? [closed]
Edit: Found some scripts/remappings that may do the job here...
I'm cleaning up an html site originally generated by Front Page, and there is alot of repeating FrontPage code I'd like to delete. ...
2
votes
1answer
346 views
vim: displaying submatch contents and the unnamed register in a substitution
I've got multiple commands in a command line that builds a text string in the unnamed register @". Then I have a substitute that captures a couple of atoms. Finally, I need to replace a pattern with ...
2
votes
3answers
197 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 ...
3
votes
2answers
238 views
How do I create pairlist with empty elements in R?
In R, when I do
substitute(function(a) { a })[[2]]
I see the following pairlist:
$a
Note that the value of the element is empty. How can I create such a pairlist? The following doesn't work for ...
3
votes
2answers
396 views
Creating expression tree in R
The substitute function in R creates a language object in the form of a tree that one can parse. How can I create the tree from scratch using list or else to then give it to eval?
# substitute gives ...


