Tagged Questions
1
vote
1answer
33 views
Implement text matching like solr in ruby
I am working on a test based Q & A application. The questions on the application mainly have two or three words as the answer.
Example : Q. Who founded Google ?
A. Larry Page , ...
0
votes
1answer
46 views
Scan String with Ruby Regular Expression
I am attempting to scan the following string with the following regular expression:
text = %q{akdce ALASKA DISTRICT COURT CM/ECFalmdce
ALABAMA MIDDLE DISTRICT COURTalndce
}
p ...
0
votes
1answer
83 views
Pattern Matching with Ruby
Im looking to match two strings and return a score, I don't care about order, just the percentage of character matches.. I was looking at the 'string_score' gem but it cares about order.. as can seen ...
-2
votes
2answers
86 views
Ruby regex to match a four item line
I'm using pdf-reader to read my monthly financial records. All the lines I'm interested in start with the description, then the date ##/##/#### then two dollar amounts $#.## $#.## .
Like this:
Gas ...
-1
votes
1answer
113 views
Ruby's .match method always returning true
Can someone tell me why this method is always returning true, even when the string does not match the pattern? I've ran the regex through TextWrangler's regex engine, and the pattern is correct. ...
0
votes
2answers
148 views
Optimising ruby regexp — lots of match groups
I'm working on a ruby baser lexer. To improve performance, I joined up all tokens' regexps into one big regexp with match group names. The resulting regexp looks like:
...
1
vote
1answer
61 views
Ruby Regexp#match to match start of string with given position (Python re-like)
I'm looking for a way to match strings from first symbol, but considering the offset I give to match method.
test_string = 'abc def qwe'
def_pos = 4
qwe_pos = 8
/qwe/.match(test_string, def_pos) # ...
2
votes
1answer
93 views
Cleanest way to approximately match strings to a list and return values in Ruby?
I want to build a function in Ruby that takes in a string and compares it to a list of possibilities before returning some value or function. Here's a (possibly naive) way it could be written as a ...
0
votes
1answer
103 views
ruby: matching a pattern against a lazily loaded file
Is there a way to match a Ruby pattern against the contents of a file, only loading as much of the file as is necessary to match the pattern?
For instance, given the pattern
p = /(abc)*/
and the ...
2
votes
1answer
104 views
Ruby Kernel::system, negation pattern in shell command not working as expected
The following bash command removes all hidden files from a directory called foo (excludes . and ..):
rm -rf foo/.[^.]*
I would expect that passing this same command to Ruby's Kernel::system should ...
1
vote
1answer
147 views
Ruby Pattern Matching- Finding number of all possible matches
Does anyone know how to find the number of all possible matches for a certain Regex pattern? What I mean is something like this:
Calculator_1_([0-1]) returns 2 possible outcomes because it can match ...
0
votes
3answers
187 views
delete lines after a pattern in ruby
I have to delete some lines after a pattern from file, in Ruby. For example, I've a file like this:
# pattern 1
a
b
# end pattern 1
# pattern 2
a
b
c
d
# end pattern 2
# pattern 3
a
b
c
# end pattern ...
-4
votes
1answer
115 views
How can I find the LinkedIn profile of any given Facebook user? [closed]
So assume I have a list of Facebook members without having their actual email. What is the best way to find the LinkedIn profile of every Facebook user on my list? What clues can I use to do the ...
0
votes
2answers
273 views
Trouble matching multiple patterns in Ruby (regex)
What is the difference between the floowing regexes:
HEAD|GET, (HEAD|POST) & [HEAD|POST]?
Basically, I want to extract the number after either HEAD or POST.
irb(main):001:0> "This is HEAD ...
0
votes
1answer
77 views
Ruby Match Result Not Working on Heroku
Using Rails running on Heroku, I've encountered a situation where a regular expression match is found in a string but the $1 variable is not being set for the group in parenthesis. This happens only ...
0
votes
1answer
130 views
How to modify this regex to exclude punctuation in a URL?
I've modified a regex that I found here so that it would accept various UK and second-level TLDs.
...
0
votes
1answer
71 views
Match and delete some header strings on ruby
I want to parse file and delete some header strings on ruby.
File(s) to be parsed looks like this.
---
some
text
text2
string
and
so
on
---
another string
and the other
And I want to remove
---
...
5
votes
3answers
458 views
Ruby String#scan equivalent to return MatchData
As basically stated in the question title, is there a method on Ruby strings that is the equivalent to String#Scan but instead of returning just a list of each match, it would return an array of ...
0
votes
1answer
196 views
Will this regex for email work for all emails?
I am looking to improve my regex skills for use in my Ruby programming.
I have come up with the matcher below for emails.
Can it be improved? Will it work for all email addresses?
Is the mailto: bit ...
3
votes
3answers
4k views
Ruby Regexp group matching, assign variables on 1 line
I'm currently trying to rexp a string into multiple variables. Example string:
ryan_string = "RyanOnRails: This is a test"
I've matched it with this regexp, with 3 groups:
ryan_group = ...
0
votes
1answer
211 views
Using casecmp in Ruby with Pattern Matching
Is there any way to use casecmp in Ruby in conjunction with pattern matching? For example, if I want to compare "Ba" with "Alabama", would I be able to do it with casecmp?
Thanks so much
3
votes
4answers
1k views
better regular expression for splitting sentences in ruby?
I am working on something that counts how frequently a word appears in a bunch of text, tells in which sentence(s) it appears, and sorts the result by the frequency of each word. For example:
and ...
1
vote
5answers
155 views
Walking over strings to guess a name from an email based on dictionary of names?
Let's say I have a dictionary of names (a huge CSV file). I want to guess a name from an email that has no obvious parsable points (., -, _). I want to do something like this:
dict = ["sam", ...
1
vote
3answers
926 views
Ruby regex: split string with match beginning with either a newline or the start of the string?
Here's my regular expression that I have for this. I'm in Ruby, which — if I'm not mistaken — uses POSIX regular expressions.
regex = /(?:\n^)(\*[\w+ ?]+\*)\n/
Here's my goal: I want to split a ...
7
votes
2answers
4k views
How to match accented characters with a regex?
I am running Ruby on Rails 3.0.10 and Ruby 1.9.2. I am using the following Regex in order to match names:
NAME_REGEX = /^[\w\s'"\-_&@!?()\[\]-]*$/u
validates :name,
:presence => true,
...
1
vote
4answers
137 views
Given a large list of URLs, What's the best method of data mining to group the URLs together into patterns or regExs?
I've got a list of 1 million URLs and I'd like to cluster similar URLs together. The output of the process would be a list of regular expressions or patterns. Ideally I'd like to use Ruby to derive ...
6
votes
2answers
2k views
Wildcard string matching in Ruby
I'd like to write a utility function/module that'll provide simple wildcard/glob matching to strings. The reason I'm not using regular expressions is that the user will be the one who'll end up ...
4
votes
2answers
378 views
find repeat patterns in webpages in ruby
I am trying to find a way of finding repeat patterns in webpages so that i can extract the content into my database.
EDIT : I don't know what the repeat pattern is before hand so i can't just ...
12
votes
2answers
267 views
Why does the =~ operator only sometimes have side effects?
I've noticed a side effect in Ruby/Oniguruma that is only present in 1 out of 4 seemingly equivalent statements. Why is the variable day defined in 009, but not in 003, 005 or 007?
...
4
votes
4answers
2k views
Ruby case statements with multiple variables
Ruby has a fairly powerful case..when..else construct for when you need to match criteria against a single variable. What is the "canonical" way to match criteria against multiple variables without ...
0
votes
4answers
581 views
Ruby, iterating through strings, matching exact patterns and replacing each but the first one
I have a column of strings (cities) in a csv file. I'd need to go through the list, iterate through all matching patterns, keep only the first one and replace all similar ones with blank lines.
I am ...
6
votes
1answer
967 views
How to get indexes of all occurrences of a pattern in a string
string = "Jack and Jill went up the hill to fetch a pail of water. Jack fell down and broke his crown. And Jill came tumbling after. "
d = string.match(/(jack|jill)/i) # -> MatchData "Jill" ...
0
votes
2answers
74 views
Regex - Matching a line but something wrong with /m?
I'd trying to match the first of the following types of strings in an email:
On Nov 18, 2010, at 8:21 PM, SiteName wrote:
On Thu, Nov 18, 2010 at 8:21 PM, SiteName <notification@SiteName.com> ...
2
votes
3answers
3k views
how do I pattern match a string within a string and then extract it into a variable
I have come across a problem that I cannot see to solve. I have extracted a line from a web page into a variable. lets say for argument sake this is:
rhyme = "three blind mice Version 6.0"
and I ...
-1
votes
1answer
113 views
Understanding how pattern matching works in Ruby 2
I don't know how pattern matching works in Ruby 2.
I have the following value, targetfilename = /mnt/usb/mpeg4Encoded.mpeg4
My pattern matching if-else is thus:
if (targetfilename.match(/^\//))
...
-1
votes
4answers
332 views
How to detect identical part(s) inside string?
I try to break down the http://stackoverflow.com/questions/2711961/decoding-algorithm-wanted question into smaller questions. This is Part I.
Question:
two strings: s1 and s2
part of s1 is ...
0
votes
4answers
3k views
Ruby regular expression help using match to extract pieces of html doc
I have an HTML document of this format:
<tr><td colspan="4"><span class="fullName">Bill Gussio</span></td></tr>
<tr>
<td ...
