Ruby method for performing a global pattern substitution.
0
votes
3answers
15 views
Awk string help finding information
Hi I have a line I am trying to parse. The line looks like this
Edward C. Anderson, Broker ~ 813.841.2773 ~ ed@action100realty.com
I am new to awk and have tried to do my research. I see that ...
2
votes
2answers
90 views
Automatically inserting line breaks in long string
Is it possible to insert line breaks into a character string like this that automatically adjust so it don't split up words?
nif <- as.character(c("I am a string", "So am I",
"I am also a ...
-1
votes
1answer
26 views
Using named capture groups inside Ruby gsub blocks (regex)
I'm trying to use a named capture group inside a block in Ruby. $1 still works, but I'd like to reference it using the name I gave.
"foo /(bar)".gsub(/(?<my_word> \(.*?\) )/x) do |match|
...
0
votes
0answers
16 views
French sentences appearing weird in Rails Website
I have a Rails app. One of my clients is importing French Text which is appearing weirdly. Check below example:
1. str = "--- \nFrench: \"3. Combien de r\\xC3\\xA9gions y a-t-il au ...
0
votes
2answers
35 views
replace string in dataframe
I'm trying to replace a certain string in a large data.frame. I just found the following solution but gsub doesn't preserve the original data.frame layout. How can I achieve this.
I mean I want to ...
-1
votes
2answers
55 views
awk/sed - transforming regex-matches
I want to modify strings which are matching a regular expression.
Using Awk with gsub, there is "&", which represents the match. Is there a way to modify this "matching value: &" and then ...
0
votes
2answers
32 views
How to substitute }{ with },{ with gsub
I am trying to replace the string }{ with },{ using awk and gsub.
My attempt is:
cat blobs.txt | awk '{gsub(/\\}\\{/,"},{"); print}' >> blobsDone.txt
I have read somewhere that characters ...
3
votes
1answer
81 views
Regex issue in R with gsub - reformat string vector to numeric
I am trying to take a character vector of dollar values that is poorly formatted and turn it into a numeric. The values are formatted as in the following vector, with a leading and trailing space, a ...
1
vote
1answer
27 views
Using variable substitution in replace.gsub
How do I include a variable in the 'replace' portion of gsub?
replace.gsub(/#{year}","1/, '#{year}","b')
This outputs:
=> #{year}","b
Let's say year = 2013. I want it to output:
=> ...
0
votes
1answer
33 views
Regexp to convert tags (similar to BBCode) to HTML
I have set of strings with nested [quote] tags in following format:
[quote name="John"]Some text. [quote name="Piter"]Inner quote.[/quote][/quote]
As you see it is not like ordinary BBCode. So I ...
0
votes
2answers
39 views
Find specific words and replace with capitals
I need to use Unix and create an awk script. The first part of the script is to find the words "Ant" "Ass" and "Ape" in a text file and replace them with the same word but capitalized.
Do I use gsub ...
1
vote
1answer
40 views
How to use Ruby's gsub function to replace excessive '\n' on a string
I have this string:
string = "SEGUNDA A SEXTA\n05:24 \n05:48\n06:12\n06:36\n07:00\n07:24\n07:48\n\n08:12 \n08:36\n09:00\n09:24\n09:48\n10:12\n10:36\n11:00 ...
-1
votes
2answers
57 views
How to remove random excess of slashes from url?
How to remove random excess of slashes from url or just validate it?
For example,
valid statements:
http://domain.com/url/url2
https://domain.com/url/url2
www.domain.com/url/url2
...
0
votes
2answers
35 views
Parsing & replacing multiple links but not when one contains an other
I can't figure out how to (easily) avoid link (2) to replace the beginning of link (1). I'd appreciate an answer in Ruby but if you figure out the logic it's good too.
The output should be:
message ...
1
vote
1answer
44 views
Merging data frames with predictable typos
I need to merge two data frames. The first one looks like this:
> df1 <- data.frame(Artist = c("Vincent van ", "Vincent van ", "Theo van Gogh", "Alexandre", "Alexandre"), Location = ...
-1
votes
2answers
39 views
Rails 3 I want to remove some part of string from the other string
I am working on rails 3 and ruby 1.9.3 I want ro remove
"[\
part from
"[\"NAS1149C0363R"
I am working with sub method but could not achieve so Please help me.
0
votes
3answers
86 views
Problems replacing substring from parsed spanish language tweets - R 2.15.3
Here is the complete code to extract the tweets: load required package
require(XML)
Let's get some tweets about the #18A hash tag define twitter search url (following the atom standard)
...
1
vote
3answers
60 views
Ruby regex matching a line in an inputted text file string [duplicate]
I need to match a line in an inputted text file string and wrap that captured line with a character for example.
For example imagine a text file as such:
test
foo
test
bar
I would like to use gsub ...
0
votes
4answers
68 views
Ruby regex gsub a line in a text file
I need to match a line in an inputted text file string and wrap that captured line with a character for example.
For example imagine a text file as such:
test
foo
test
bar
I would like to use gsub ...
0
votes
1answer
37 views
Rails gsub not working in view
I have the following code in my view, I don't understand why the gsub doesn't work.
<div class="section" id="<%= section.title.gsub(/_/, ' ') %>">
When .title = "Test Title" it just ...
2
votes
3answers
160 views
Ruby regex what does the \1 mean for gsub
What does the \1 do?
For example
"foo bar bag".gsub(/(bar)/,'car\1')
I believe it has something to do with how you use parentheses, but I'm not really sure. Could someone explain it to me? And ...
0
votes
1answer
59 views
Ruby regex- does gsub store what it matches?
If i use
.gsub(/matchthisregex/,"replace_with_this")
does gsub store what it matches with the regex somewhere? I'd like to use what it matches in my replacement string. For example something ...
2
votes
3answers
53 views
How can I remove text inside brackets in Lua?
I have a text like "Text the I need (extra descriptor) text" and I want "Text the I need text".
I have tried to use str:gsub('\([^)]*\)', "") but for some reason fails to work
1
vote
3answers
94 views
R: gsub and capture
I am trying to extract the contents between square brackets from a string:
eq <- "(5) h[m] + nadh[m] + q10[m] --> (4) h[c] + nad[m] + q10h2[m]"
I can filter them out:
gsub("\\[.+?\\]","" ...
1
vote
1answer
89 views
How to replace “unexpected escaped character” in R
When I try to parse JSON from the character object from a Facebook URL I got "Error in fromJSON(data) : unexpected escaped character '\o' at pos 130". Check this out:
library(RCurl)
library(rjson)
...
0
votes
3answers
100 views
Ruby Regex gsub - everything after string
I have a string something like:
test:awesome my search term with spaces
And I'd like to extract the string immediately after test: into one variable and everything else into another, so I'd end up ...
1
vote
1answer
137 views
Gsub raises “invalid byte sequence in UTF-8”
I have the next method call:
Formatting.git_log_to_html(`git log --no-merges master --pretty=full #{interval}`)
The value of interval is something like release-20130325-01..release-20130327-04.
...
0
votes
1answer
34 views
Replace each string in turn in a ruby on rails loop
I have the following string 'foo bar baz'.
I want to loop over this string and remove a space each time so that I end up with:
foo bar baz
foobar baz
foo barbaz
I expect it has something to do ...
0
votes
2answers
60 views
Non-regexp version of gsub in Ruby
I am looking for a version of gsub which doesn't try to interpret its input as regular expressions and uses normal C-like escaped strings.
Update
The question was initiated by a strange behavior:
...
2
votes
4answers
113 views
Ruby blank line in file won't remove
I must've browsed every solution on StackOverflow, nothing seems to be removing the blank line's from text file which looks like this:
google
yahoo
facebook
reddit
Amongst other sources, I've ...
0
votes
2answers
64 views
Ruby 'sub!' doesn't replace text if/elsif statements [duplicate]
This has been driving me crazy for far longer than it should, I'm using SIMPLE string replacement, and yet it fails to replace the string (in which case, it is 'url') according to the information it ...
1
vote
1answer
42 views
How to make awk gsub return a tab-separated line?
I use awk gsub to replace a string in a specific column of my tab-separated file:
cat test.txt
1 1 2032 1
2 1 2032 2
3 1 999 3
4 1 2032 4
5 1 9999 5
However, the ...
1
vote
2answers
50 views
Put a 0 in front of digit <= 9 (for loop in r only working on the last instance)
I've written this to find any instance of "1:" to "9:" and replace it with "01:" to "09:" whilst leaving "10:" or larger intact. Here's a sample script:
region = ...
1
vote
2answers
94 views
Formatting string with RegExp to set delimiter
I'm trying to format a string as follows
Ensure all of numbers use dashes for delimiters.
Example: 480.01.4430 and 480014430 would both be 480-01-4430.
this is what I have come up with so far, but ...
0
votes
1answer
42 views
gsub regex pattern
I am using gsub to substitute tabs with commas
gsub(/\t/,\",\")
a\tb will be a,b
In some instances I have two tabs follwed by each other
For example
a/t/tb
In that case gsub converts it to ...
0
votes
1answer
64 views
R Read and Transform Lines in a File
I have a horribly formatted log file (I cannot changed how it is created) that I wish to do some analysis on.
I have a regex that matches specific lines in the log file. These lines contain bits of ...
0
votes
1answer
74 views
Using sub or gsub in R [closed]
I have a file that has questions and answers in them by grade and subject. I
need to get the path inserted into the question. The path is made up of the
fixed URL, subject, grade, and image name(which ...
6
votes
5answers
163 views
Replace multiple arguments with gsub
of course I could replace specific arguments like this:
mydata=c("á","é","ó")
mydata=gsub("á","a",mydata)
mydata=gsub("é","e",mydata)
mydata=gsub("ó","o",mydata)
mydata
but ...
0
votes
2answers
257 views
Regex return file name, remove path and file extension
I have a data.frame that contains a text column of file names. I would like to return the file name without the path or the file extension. Typically, my file names have been numbered, but they don't ...
0
votes
2answers
92 views
Trim a string in R
I am trying to isolate a portion of a string in R. The strings have the form ABC_constantStuff_ABC_randomStuff and ABC is what I am trying to extract. ABC is unknown and can be 1-3 characters long. ...
1
vote
1answer
106 views
Removing multiple spaces and trailing spaces using gsub
How can I remove multiple spaces and trailing spaces using only 1 gsub? I already made this function trim <- function(x) gsub(' {2,}',' ',gsub('^ *| *$','',x)), but i'm trying to rewrite it with ...
0
votes
2answers
45 views
Ruby gsub same format for all 3 but 1 of them outputs differently [closed]
Im trying to add html tags around certain text criteria via regex .
Right now, I have * and ** working (adding h1 and h2 tags)
I have the same format for the li tag, but it adds the closing tag next ...
0
votes
1answer
64 views
gsub extract two words
I cannot get my head around gsub(). If text is:
text <- "Genus_species_1652_NL"
How would I extract to get
"Genus species"
Thanks. This is a useful link but I havnt been able to sort it
...
2
votes
3answers
249 views
R regex / gsub : extract part of pattern
I have a list of weather stations and their locations by latitude and longitude. There was formatting issue and some of them have have hours and minutes while other have hours, minutes and seconds. ...
0
votes
1answer
66 views
Ruby regex for stripping BBCode
I'm trying to remove BBCode from a given string (just using gsub with some regex).
Here's an example string:
The [b]quick[/b] brown [url=http://example.com]fox[/url] jumps over the lazy dog ...
1
vote
2answers
104 views
How to extract words between two period using R's gsub
I have a text that looks like this:
txt <- "w.raw.median"
What I want to do is to extract the second word in between two periods (.),
giving this output
> raw
But why this doesn't work
...
0
votes
1answer
106 views
gsub with regular expression removes one character
I have an article model (article.rb):
class Article < ActiveRecord::Base
attr_accessible :name, :content
end
I have a gsub like this in my article.rb:
self.content.gsub!(/anylink[^']/i, ...
-1
votes
1answer
107 views
Multiple gsub in a loop
I have a small encyclopedia of articles with my Article.rb:
class Article < ActiveRecord::Base
attr_accessible :name, :content
end
I now want to automatically link within the articles if I ...
1
vote
2answers
64 views
Rails before_save callback not stripping out comma from number properly
I'm storing a monetary value as an integer (cents) in the database and then formatting it on the view side. However, when the user inputs something like "175,000" the value that gets stored in the DB ...
2
votes
4answers
120 views
R regex extract text not immediately following pattern
I have a data frame with a column containing semi-structured text. I'm looking for certain pieces of information but they have a pattern I'm not sure how to exploit.
head(events5)
...






