Tagged Questions
The gsub tag has no wiki summary.
11
votes
3answers
321 views
How can I use back references with `grep` in R?
I am looking for an elegant way of returning back references using regular expressions in R. Le me explain:
Let's say I want to find strings that start with a month name:
x <- c("May, 1, 2011", ...
6
votes
5answers
2k views
Replace ' with \' in Ruby?
I'm trying to figure out how to replace a quote like ' with something like \'.
How would I do this?
I have tried
"'".gsub("'","\\'")
but it just gives an empty string. What am I doing wrong ...
5
votes
3answers
125 views
How do I limit the number of replacements when using gsub?
How do you limit the number of replacements made by String#gsub in Ruby?
In PHP this can be easy done with preg_replace which takes a parameter for limiting replacements, but I can't figure out how ...
4
votes
3answers
116 views
Ruby multiple string replacement
str = "Hello☺ World☹"
expected out put is "Hello:) World:("
I can do this str.gsub("☺", ":)").gsub("☹", ":(")
Is there any other way so that I can do this in a single function call. something like ...
4
votes
3answers
155 views
How do I search, increment, and replace integer substrings in a Ruby string?
I have a lot of documents that look like this:
foo_1 foo_2
foo_3
bar_1 foo_4 ...
And I want to convert them by taking all instances of foo_[X] and replacing each of them with foo_[X+1]. In this ...
4
votes
4answers
538 views
In R, how do I replace a string that contains a certain pattern with another string?
I'm working on a project involving cleaning a list of data on college majors. I find that a lot are misspelled, so I was looking to use the function gsub() to replace the misspelled ones with its ...
4
votes
4answers
970 views
Ruby post title to slug
How should I convert a post title to a slug in Ruby?
The title can have any characters, but I only want the slug to allow [a-z0-9-_] (Should it allow any other characters?).
So basically:
downcase ...
4
votes
1answer
199 views
Make one gsub call instead of five
How can I replace this:
lyrics = lyrics.gsub(/\n/,'').gsub(/^\{\"similar\": \[/, '').gsub(/\]\}$/, '').gsub(/^\{/, '').gsub(/\}$/, '')
to something shorter and one gsub call?
4
votes
4answers
612 views
More than 9 backreferences in gsub()
How to use gsub with more than 9 backreferences?
I would expect the output in the example below to be "e, g, i, j, o".
> test <- "abcdefghijklmnop"
> ...
3
votes
2answers
845 views
smarter character replacement using ruby gsub and regexp
I'm trying to create permalink like behavior for some article titles and i don't want to add a new db field for permalink. So i decided to write a helper that will convert my article title from:
"O ...
3
votes
2answers
95 views
Why I can't substitute with '\\+' inside a string with gsub?
Try the following code:
s = '#value#'
puts s.gsub('#value#', Regexp.escape('*')) # => '\*'
puts s.gsub('#value#', Regexp.escape('+')) # => ''
Wtf? It looks like the char '\+' ...
3
votes
2answers
7k views
Ruby, gsub and regex
Quick background: I have a string which contains references to other pages. The pages are linked to using the format: "#12". A hash followed by the ID of the page.
Say I have the following string:
...
2
votes
2answers
122 views
Using more than nine back references in an R regex
The code below does not work, because the replacement string for \10, \11, and so on, cannot be read properly. It reads \10 as \1 and print 0 instead, can you help me fix it?
There is an answer in ...
2
votes
5answers
47 views
Regex getting text inside
I have been trying to grab a first location name inside the sentences. The desired location name will exactly starts at the 2nd capital of the first sentence and then precisely end before the first ...
2
votes
1answer
77 views
Using string.gsub to change x to y most efficiently (Lua)
I'm at a loss here, though I've been getting more and more familiar with gsub in Lua. There probably is a better way to do this more efficiently, and that's what I'm looking for. What I'm wishing to ...
2
votes
1answer
50 views
How to create a regular expression that replaces all matches in a string through ruby's gsub?
I wonder why my regular expression will not work, I require to achieve the following behavior:
"aoaoaoaoaoao".gsub!(/o/, 'e')
The above will correctly give me: aeaeaeaeaeae
Now, The real thing ...
2
votes
3answers
160 views
Why does String#gsub double content?
s = "#main= 'quotes'
s.gsub "'", "\\'" # => "#main= quotes'quotes"
This seems to be wrong, I expect to get "#main= \\'quotes\\'"
when I don't use escape char, then it works as expected.
s.gsub ...
2
votes
1answer
41 views
Is it possible to load regex from external files in Ruby?
I want to read regular expressions from a external file in Ruby. For example, I want to substitute a big string loading every regex from a file and running gsub for each. Each regex is separated by ...
2
votes
4answers
195 views
replacing the `'` char using awk
I have lines with a single : and a' in them that I want to get rid of. I want to use awk for this. I've tried using:
awk '{gsub ( "[:\\']","" ) ; print $0 }'
and
awk '{gsub ( "[:\']","" ) ; ...
2
votes
2answers
85 views
String: replacing spaces by a number
I would like to replace every blank spaces in a string by a fixnum (which is the number of blank spaces).
Let me give an example:
s = "hello, how are you ?"
omg(s) # => ...
2
votes
2answers
132 views
Ruby .gsub Looking for a way to shorten a line of code that makes similar substitutions
I have a line of Ruby code that looks something like this:
words = params[:words].gsub("\n","").gsub("\s","")
Is there a better way to do this since the code takes all spaces and newlines and gets ...
2
votes
2answers
356 views
How to gsub('%', '\%', … in R?
I want to export a latex table with a units column that has the percent (%) symbol.
library(xtable)
foo <- data.frame(units='%', citation = '\\citep{authorYYYYabc}')
print(xtable(foo), ...
2
votes
4answers
2k views
rails gsub question
How can i replace " " and "_" with "-" in my controller when creating a new post?
I have the following form fields:
title
url
content
I want to execute the gsub on the url field.
Thanks...
2
votes
1answer
203 views
lua gsub %b <— how does this work?
In the following lua code:
function interp(s, tab)
return (s:gsub('($%b{})', function(w) return tab[w:sub(3, -2)] or w end))
end
what does the %b mean?
and how does this match stuff like ...
2
votes
6answers
377 views
Ruby regular expression using gsub
Hi I'm new to Ruby and regular expressions. I'm trying to use a regular expression to remove any zeros from the month or day in a date formatted like "02/02/1980" => "2/2/1980"
def m_d_y
...
2
votes
2answers
1k views
Ruby gsub doesn't escape single-quotes
I don't understand what is going on here. How should I feed gsub to get the string "Yaho\'o"?
>> "Yaho'o".gsub("Y", "\\Y")
=> "\\Yaho'o"
>> "Yaho'o".gsub("'", "\\'")
=> "Yahooo"
2
votes
4answers
895 views
Ruby: how to match a double quote in a regexp
I am trying to remove some double quotes (") characters from a text file using a Ruby one liner, with little success.
I have tried the following, and some variations, without success.
ruby -pe ...
1
vote
4answers
48 views
Replace word with capitalized word
If the first words of the line (one or more) are all in CAPs, I would like to replace those words with the capitalized words (using ruby's .capitalize). For e.g. "FOO BAR" to "Foo Bar"
I tried the ...
1
vote
1answer
154 views
Remove extraneous spaces with `gsub` for `print.xtable`
I am new to R development, and have to modify some existing code. Specifically, I need to change a print() call so that it removes extraneous consecutive space characters.
I've found the ...
1
vote
3answers
41 views
Substituting the '*' Character in AWK using 'gsub'
I'm trying to use the AWK in a unix shell script to substitue an instance of one pattern in a file with another and output it to a new file.
Specifically, if the file name is MYFILE.pc, then I'm ...
1
vote
2answers
83 views
lua gsub special replacement producing invalid capture index
I have a piece of lua code (executing in Corona):
local loginstr = "emailAddress={email} password={password}"
print(loginstr:gsub( "{email}", "tester@test.com" ))
This code generates the error:
...
1
vote
1answer
70 views
Braces in regexp for ruby sub-method block
I have a string:
s = "<aaa>bbb</ccc>"
I want to get aaa and bbb in ruby block for sub method.
If I call:
s.sub(/<([a-z]+)>([\s\S]+)<\/[a-z]+>/,"first=\\1 second=\\2")
...
1
vote
4answers
128 views
Using grep/gsub To Find First Colon Only
I have a long file which is written as ONLY one column.
This column contains gene names followed by a colon (:) then by the name of a microRNA fragment.
Unfortunately, the microRNA name MAY ALSO ...
1
vote
1answer
237 views
Rails 3: how to use gsub or to replace whitespace characters with “-”?
I have an Artist model is name:string. and I want /users/1/artists/jimi-hendrix/posts instead of what I have now which is /users/1/artists/1/posts
The problem is I don't think I can use friendly_id ...
1
vote
2answers
188 views
replace words in R data.frames (Text Mining)
I'm working on a Text Mining Solution with SQL and R.
First I Import Data into R from my SQL selection and than I do data mining stuff with it.
Here is what I got:
rawData = ...
1
vote
1answer
249 views
Ruby match first occurrence of string for a gsub replacement
I have a string let's say http://someUrul.com/someController/SOmeAction?SomeQS=http://someOtherUrl
and I want to replace the first http with https, but not the second, so I end up with ...
1
vote
1answer
262 views
Rails 3 and html_safe confusion (allow pictures (smiles) in chat but deny everything else)
I have here is a module that replaces the smilies (like ":-)") as icons:
module Smileize
PATH = "/images/smiles"
SMILES = [/\;\-?p/i, /\$\-?\)/, /8\-?\)/, /\>\:\-?\(/, /\:\-?\*/, /\:\-?o/i, ...
1
vote
2answers
92 views
Escaping Apostrophes Using Gsub
I'm working in Ruby and I'm trying to escape ' characters to \' so that I can use them in SQL. I'm trying to use gsub, but it doesn't seem to be working.
"this doesn't work".gsub /'/, '\\'' #=> ...
1
vote
2answers
133 views
R: Replacing rownames of data frame by a substring[2]
I have a question about the use of gsub. The rownames of my data, have the same partial names. See below:
> rownames(test)
[1] "U2OS.EV.2.7.9" "U2OS.PIM.2.7.9" "U2OS.WDR.2.7.9" ...
1
vote
3answers
76 views
How can I have a default in case the substituted value for gsub is null?
I currently have this as one of many in a long string of gsubs:
gsub("{Company}", contact.company_name.clear_company.to_s).
But sometimes contact.company_name is null.
So I broke out from the long ...
1
vote
2answers
81 views
using negative conditions within regular expressions
Is it possible to use negative matches within gsub expressions?
I want to replace strings starting by hello except those starting by hello Peter
my-string.gsub(/^hello@/i, '')
What should I put ...
1
vote
2answers
86 views
RUBY: Please help with gsub (try2)
I realize my last thread was a bit vague.
I have an object which contains the following string "XXXXyyyy!!!!zzzz"
XXXX - never the same, will always change, it may be a million characters long
yyyy ...
1
vote
1answer
177 views
Lua string.gsub pattern rules?
Here is the current script that have running.
var_name="[Clan] Imposter"
while var_name:find("[Clan]")~=nil do
var_name=var_name:gsub("[Clan]", "")
end
print(var_name)
...
1
vote
1answer
126 views
How can i use gsub to replace “0” (only)
gsub('$0\n','') isn't working
I would prefer something similar. I want:
(note the 10 and 20 have to work with 0 not being replaced in them).
If I have:
23
12
0
15
9
0
10
20
0
I want:
23
12
...
1
vote
1answer
155 views
Rails 3 working with multiple languages
When working with different languages, what is the proper way to sub a string out in Rails?
Example (Czech Translation):
str = "pro více informací"
replace = "<em>více</em>"
str["více"] ...
1
vote
2answers
782 views
Ruby/Rails working with gsub and arrays
I have a string that I am trying to work with in using the gsub method in Ruby. The problem is that I have a dynamic array of strings that I need to iterate through to search the original text for and ...
1
vote
4answers
99 views
Newbie to RegEx
I have this sample string :
≪! [If Gte Mso 9]>≪Xml> ≪Br /> ≪O:Office Document Settings> ≪Br /> ≪O:Allow Png/> ≪Br /> ...
1
vote
1answer
142 views
Ruby String::gsub! pausing unexpectedly
I am working on a VERY simple script to clean up a few hundred thousand small XML files. My current method is to iterate through the directory and (for each file) read the file, use String::gsub! to ...
1
vote
1answer
666 views
Escaping '“' with regular double quotes using Ruby regex
I have text that has these fancy double quotes: '“' and I would like to replace them with regular double quotes using Ruby gsub and regex. Here's an example and what I have so far:
sentence = 'This ...
1
vote
3answers
289 views
Ignoring a character along with word boundary in regex
I am using gsub in Ruby to make a word within text bold. I am using a word boundary so as to not make letters within other words bold, but am finding that this ignores words that have a quote after ...