Tagged Questions
The substitute tag has no wiki summary.
5
votes
4answers
194 views
VIM, Run a command on multiple files
I have a bunch of sass files and my designer used the wrong syntax.
I wanted :margin-top 1px but he did margin-top: 1px
So I easily wrote a sub command:
:rubydo sub! /([\w-]+):/,':\1'
So that ...
3
votes
3answers
73 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 ...
3
votes
2answers
64 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
4answers
582 views
Perl - Problem with splitting columns in tab delimited text file and replacing columns with new values
I have a tab delim. text file comprised of a number of rows and columns. I want to change the contents of the first two columns, then write the amended file to a new file.
Before changing , the first ...
3
votes
4answers
327 views
select row from table and substitute a field with one from another column if it exists
I'm trying construct a PostgreSQL query that does the following but so far my efforts have been in vain.
Problem:
There are two tables: A and B. I'd like to select all columns from table A (having ...
3
votes
1answer
699 views
Vim: search and replace across multiple lines with conversion to lower case
Here's what I'd like to do, for each one of many files:
search for all occurrences of "<a href" then begin block selection
select until the first occurrence of ">"
convert the entire match to ...
2
votes
1answer
49 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
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
2answers
102 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 ...
2
votes
2answers
70 views
global submatch()?
I wanted to find a line, then match several words within that line BUT instead of substituting them I would prefer to simply save them (by appending to a register, or exporting to a file).
Is ...
2
votes
3answers
260 views
Change lines that match a pattern in between delimiters using awk
I have an input file something like this:
some line
some other line
another line
start_delimiter
interesting stuff
more interesting stuff
even more interesting stuff
end_delimiter
possibly more ...
2
votes
2answers
74 views
Howto include a min. of XX Spaces between two strings in Vim via substitute?
I have a text file with 2 strings per line with different length each.
For better reading, I want to have the second string lined up with the following lines.
e.g. Before:
bla foo
barbla barfoo
...
2
votes
4answers
362 views
Can this be done faster (read file, substitute [sed], write new file)
I use this piece of code in my bash script to read a file containing several hex strings, do some substitution and then write it to a new file. It takes about 30 minutes for about 300 Mb.I'm wondering ...
2
votes
2answers
234 views
R warning message on recursive expression: If you fail, try, try again
I want to create a function that will retry an expression if it fails. Here's my working version:
retry <- function(.FUN, max.attempts=3, sleep.seconds=1) {
x <- NULL
if(max.attempts > ...
2
votes
2answers
552 views
Java workaround for BigInteger
I was working on a scenario wherein i had to implement BODMAS in Java and the operands could have as many as 1000 digits. So i chose to implement it in the following manner -
I converted the infix ...
2
votes
3answers
3k views
Single sed command for multiple substitutions?
I use sed to substitute text in files.
I want to give sed a file which contains all the strings to be searched and replaced in a given file.
It goes over .h and .cpp files. In each file it searches ...
2
votes
3answers
1k views
In Ruby, how do I replace the question mark character in a string?
In Ruby, I have:
require 'uri'
foo = "et tu, brutus?"
bar = URI.encode(foo) # => "et%20tu,%20brutus?"
I'm trying to get bar to equal "et%20tu,%20brutus%3f" ("?" replaced with "%3F") When I ...
1
vote
1answer
53 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: ...
1
vote
2answers
354 views
JSF problem with binding f:loadBundle
I try to create simple jsf application.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
...
1
vote
2answers
112 views
use sed to replace a line
I have been struggling to do this. I need to replace a line in a document with either blank space or the word "DELETED." The lines are different, and I am running a counter to determine the correct ...
1
vote
3answers
181 views
How to Substitute a String if record is NULL in T-SQL
I'm writing a T-SQL report that shows the number of accounts that are in different statuses for different customers. The report results in something like:
Customer1 NoService 7
Customer1 ...
1
vote
1answer
143 views
Bewildering behavior of `substitute` in R
Guys, this drives me crazy.
This works as expected:
eobj <- substitute(obj <- list(a, b), list(a = 32, b = 33))
eval(eobj)
obj
[[1]]
[1] 32
[[2]]
[1] 33
Now, try this:
efun <- ...
1
vote
3answers
76 views
How to write a group of substitude (la->lb), (lb->lc), (lc->la) as a regular expression
I need to do it in vim (MacVim) and use it in one line.
z.a2=cross(z.b, z.c)(z.b1, z.c1);
became
z.b2=cross(z.c, z.a)(z.c1, z.a1);
Thank yo
1
vote
3answers
122 views
vim string substitution
I want to substitute all cygdrive/e with cygdrive/d using vim. But I can't get the matching pattern correctly. Here is my command:
s/cygdrive\/e/cygdrive\/d/g
it doesn't work. Can anybody show me ...
1
vote
1answer
43 views
What is the simplest way (or simplest library) to create a truly secure php mail() function?
The mail() function is bad, because it is so permissive with headers that you pretty much can't use it with any user input without subjecting yourself or others to spam. So what is the simplest ...
0
votes
0answers
48 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. ...
0
votes
2answers
132 views
replacing vowels in a list with underscore using Prolog
here is what I want to do. I have a list of characters (basically a word) and I want to substitute the vowels in the word by underscore ['_'] and return a new list.
eg:
?-sub([s,e,g,e,d],A).
...
0
votes
3answers
138 views
Default substituting %s in python scripts
Sometimes in Python scripts I see lines like:
cmd = "%s/%s_tb -cm cond+line+fsm -ucli -do \"%s\""
Where is the %s in the above line substituted? Does Python have some stack of strings and it pops ...
0
votes
0answers
180 views
iFrame substitute that is search engine friendly
my site is here and I use Microsoft Excel webapps in order to create a stockticker. I was wondering if there's a substitute for iframes so that it can be understood by search engines.
Oh and I was ...
0
votes
0answers
16 views
How far should one model substitutes in the domain model?
From what I've read, substitutes are use case Actors (?) that are represented in the domain model.
One such example I've encountered is to have a class represent a server in an ftp client. At first I ...
0
votes
3answers
474 views
iterate through object properties and change current property in a loop in objective-c
Newbie question: Can one substitue commands, properties or methods for NSStrings or char at runtime?
Lets say I do something like this:
//these are the names of my properties of an NSObject I ...
0
votes
1answer
159 views
How can I get the mapi system stub dll to pass extended mapi calls to my dll?
For various reasons (questioning the reasons is not helpful to me), I'd like to implement my own extended mapi dll for windows xp. I have a skeleton dll now, just a few entrypoints exist for ...
0
votes
3answers
473 views
has any method like substitute of mootools in jquery
this is mootools code:
var myString = "{subject} is {property_1} and {property_2}.";
var myObject = {subject: 'Jack Bauer', property_1: 'our lord', property_2: 'savior'};
...