0
votes
2answers
33 views

Ruby - how to pull out that is betweet two “points”?

I have a text like this: ... Sentence one. hsjdhsd jghdsjghjdskhgjksdh kjghdsjkg sdgsdg dgds hfdhdf h fdh dfh Sentence two. gdjshagjhsdga sdgjhsdkjgh adskjghdsa gs a gfdgfdhfdhh ... And I would ...
0
votes
3answers
53 views

How can I extract part of a string that is in quotes

Say I have this string: foo = "This is a string 'with a string inside it!'" How do I extract 'with a string inside it!' from foo?
1
vote
2answers
41 views

String is .blank? but neither empty nor whitespace

I'm trying to use the squish method to reduce multiple white spaces in a string to single white spaces. However, I have a string with mutliple spaces which are not reduced. When I check for ...
3
votes
1answer
67 views

The Ruby gets method truncates my input at 256 characters

I am trying to enter a long string (> 256 characters but generally < 512) in Ruby with: puts "Enter long string" ilogo = gets.chomp puts "#{ilogo}" For some silly reason, it always truncates the ...
3
votes
3answers
48 views

Adding String functionality to class

Consider this class class Duck attr_accessor :name def initialize(name) @name = name || 'Donald' end # Some quacking methods.. def to_s "#{@name} (Duck)" end end I would ...
2
votes
3answers
60 views

How to find out if a string includes a word stored in a variable

I am testing browser data via cucumber. I am looking through a list of links on a page, to determine which link I should click. So let's say I have a list of dessert links and I wanted to find the ...
0
votes
1answer
41 views

Ruby method undefined for nilClass errors for string methods

I don't understand why the below doesn't work: #TODO: #Open file-io-samples/MultipleLinesCustomDelimiter.txt #Break each line into fields #Convert Times from mm:ss to seconds #Remove any redundant ...
0
votes
1answer
39 views

ruby gsub function in java, replaceAll maybe?

I've been trying to translate this funcFormat = funcFormat.gsub(/sqrt\((.*)\)/,'Math.sqrt(\1)') to this in java funcFormat = funcFormat.replaceAll("sqrt((.*))","Math.sqrt($1)"); or is ...
0
votes
2answers
59 views

How do I write logic into a HTML file?

I am trying to populate an HTML file with a few parameters: <!DOCTYPE html> <html> <head> <title>'Breakdown'</title> </head> ...
-2
votes
1answer
23 views

Converting ASCII codes that are in a string in ruby

Currently, with an api, they're giving me back a string with the ASCII code such as &#39; in it. I was wondering if there was a simple way in Ruby to convert all these different codes to their ...
0
votes
3answers
35 views

Getting perplexing results in Ruby trying to do integer.to_s to convert it to a string

Very simply put, when I try to insert an integer into a method, then convert it into a string, and print out the first character into the string, I get the number in the [0] slot + 48. Without fail, I ...
0
votes
2answers
54 views

Combine two very similar ruby if statements

Right now I am finding a match in a string of text: if w.include? 'syn' w.sub!(/.*?syn\|/, '') return w unless similar?(word, w) elsif w.include? 'sim' w.sub!(/.*?sim\|/, '') return w ...
0
votes
2answers
53 views

rails split string with custom length

I'm using Rails and MongoMapper as my working platform. I want to generate a custom key with the help of month and year. The possible format would be YYYYMM####, YYYY is current YEAR which I can ...
0
votes
1answer
42 views

Ruby produce modified string from array

I have an array ["http://www.google.com", "http://www.yahoo.com", "http://www.weather.com"] and I would like to produce one long string <a ...
0
votes
4answers
55 views

String.methods.include?(:upcase) => false but '.upcase' is listed in ruby-doc.org

I have been playing around with Strings a bit (in irb), and found myself in trouble understanding the meaning of the following code: String.methods => [:try_convert, :allocate, :new, :superclass, ...
2
votes
6answers
133 views

Ruby String operations on HUGE String

I have a string that is ~10 GB in size (huge RAM usage ofc..). The thing is, I need to perform string operations like gsub and split on it. I noticed that Ruby will just "stop working" at some point ...
1
vote
2answers
69 views

Ruby does not escape oct on puts

I have a script that parses a large text file, extracts certain values (using line.split), and stores them in a text file. I am having problems with octal values not interpreting when they are saved ...
0
votes
2answers
40 views

Using Ruby #Split

I have a method, such as: def change(string) return string end The method change will be called multiple times on an incoming stream of strings, such as: 1367 INFO sslsniff : Certificate Ready: ...
-1
votes
3answers
56 views

String in alphabetical order Ruby

I am new to Ruby. I have written a solution in Java public boolean checkOrder(String input) { boolean x = false; for (int i = 0; i < input.length() - 1; i++) { if ...
1
vote
2answers
23 views

extra escape character appearing when using Ruby's p method to print string

I am attempting to write a simple function to perform string interpolation on arbitrary text in ruby. I also want the function to not evaluate escaped interpolation blocks so that "\#{foo}" would be ...
1
vote
2answers
45 views

Measure the distance between two strings with Ruby?

Can I measure the distance between two strings with Ruby? I.e.: compare('Test', 'est') # Returns 1 compare('Test', 'Tes') # Returns 1 compare('Test', 'Tast') # Returns 1 compare('Test', 'Taste') # ...
6
votes
2answers
79 views

Why is split(' ') trying to be (too) smart?

I just discovered the following odd behavior with String#split: "a\tb c\nd".split => ["a", "b", "c", "d"] "a\tb c\nd".split(' ') => ["a", "b", "c", "d"] "a\tb c\nd".split(/ /) => ["a\tb", ...
0
votes
1answer
40 views

When not to use to_sym in Ruby?

I have a large dataset from an analytics provider. It arrives in JSON and I parse it into a hash, but due to the size of the set I'm ballooning to over a gig in memory usage. Almost everything ...
3
votes
1answer
69 views

Why is YAML throwing float ArgumentErrors on strings?

I have some nested strings in a complex hash that triggers "ArgumentError" exceptions. What's the best practiced way in dealing with this? require 'yaml' { a: 'hello', b: ...
0
votes
2answers
44 views

Rails 3 string contains HTML code need to loop through the code in string

I am working on the rails 3 application where i need to pass the html code in to the string variable and pass it to the web services as parameter. I have the following code with the loop inside but ...
1
vote
1answer
33 views

change contents of shallow copied array of strings in ruby

Suppose I create the following arrays in ruby: a = ["apple", "cherry"] b = a.dup Here, b is a shallow copy of a. So if I do: a.each{|fruit| fruit << " pie"} I get both a and b equal to ...
1
vote
2answers
55 views

Add square bracket to the first character of string

I need to put the first character within square brackets. For example, I want to convert "abc" to "[a]bc". How do I do this in ruby using regex?
0
votes
1answer
30 views

How to convert an integer to a specific time format like “0m0.000s”

I have a user input: an integer value that represents the quantity of seconds or minutes, and an option. I need to convert them to this specific format: "0m0.000s". If the number is 5 and the option ...
0
votes
3answers
27 views

Formatting a Name out of image source

I'm trying to extract a name out of an image source file, here's the format of the string source ='<img src="/ratefinder/images/providers/NAME-1307548896.gif">' So I've tried using a ...
-6
votes
5answers
226 views

letter count in a sentence using Ruby

Suppose I have a string "I am a good boy". I want the total count of each letter present in the string. Letters are case sensitive. i.e., D and d need to be considered as two different characters.
0
votes
5answers
89 views

In Ruby unit tests, how to assert that a string contains certain substring?

In ruby unit test, how do I assert that a string contains a substring? e.g. something like assert_contains string_to_test, substring_to_verify
2
votes
1answer
36 views

How do I execute Date from a string?

I am trying to read a file which has dynamic dates in it such as Date.today or (Date.today - 1 ), and perform my code based on the date requested. If I have the string defined with the date in quotes ...
1
vote
2answers
59 views

Join array of strings into 1 or more strings each within a certain char limit (+ prepend and append texts)

Let's say I have an array of Twitter account names: string = %w[example1 example2 example3 example4 example5 example6 example7 example8 example9 example10 example11 example12 example13 example14 ...
-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.
3
votes
1answer
67 views

Use Ruby program. Input: sentence Modify: words Output: modified sentence

I am new to Ruby. This is a programming interview question to use any language. I am trying to do it in Ruby. Write a program to input a given sentence. Replace each word with the ...
1
vote
3answers
92 views

Ruby string splitting

I have a long string as follows: ...
1
vote
1answer
62 views

How to fix mixed JSON encoded strings

I face the following problems. I have JSON strings, where inner arrays/objects are sometimes written as an escaped string and sometimes not. For instance I have { "author": "Jack", "meta": ["a", ...
0
votes
1answer
58 views

squeeze! not working

I have a text file that I am opening and creating objects from. It looks like this: /home/music/Accident Murderer.mp3|4:37| Nas | Accident Murderer /home/music/Bitch Bad.mp3 ...
-2
votes
2answers
64 views

Ruby: create a double array from string based on a colon separator

I get a string with the following repeating pattern: label (one word), colon, some text (pretty much anything, even empty). For example: "FileSize: 597262388 Duration_String: 1h 34mn ...
0
votes
2answers
54 views

how to convert array output to normal string in ruby on rails application

I am implementing tag functionality and an article may have one to many tags. I am able to get tag values from db in this format ["social network", "professional"] I want output in this format ...
1
vote
0answers
44 views

Find and replace a time string in Ruby for TaskPaper Logging

I'm using Brett Terpstra's Ruby script to find and log completed TaskPaper items as found here: https://gist.github.com/ttscoff/1913007 This script searches lines for lines that have tags that look ...
0
votes
1answer
78 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 ...
0
votes
2answers
139 views

Codecademy “converting between symbols and strings” ruby lesson

These are Codecademy's instructions: We have an array of strings we'd like to later use as hash keys, but we'd rather they be symbols. Create a new array, symbols. Use .each to iterate over the ...
0
votes
1answer
38 views

.map ruby statement not displaying as I expect

I have a has many join table and displaying data based on that table. The data has been mapped and I have confirmed the classes of the variable as being a string. However in the actual table it ...
0
votes
2answers
30 views

Adding a string into time member and saving to database

I have a duration column in my database table in which I want to insert a timespan, like 02:00 or 19:20 (hours and minutes), the column type is time. The user sees a form with two dropdown lists, one ...
0
votes
0answers
46 views

Error comparing strings?

When I run the following code where str is of type string: def self.split(str) array = Array.new for i in 0..str.length-1 if str[i].casecmp('a') == 0 || str[i].casecmp(':') == 0 ...
1
vote
6answers
45 views

Interpolate a string every 3 characters starting from the end

I'm trying to interpolate a comma into a string for every three digits. Interpolation has to be done from the end of the string. So, the input is: "12345678" And the output should be: "12,345,678" ...
0
votes
2answers
18 views

List of substitutions in external file

I need to pass a string against an external file that contains a list of substitutions to perform at every occurrence. The substitution file will look like this (I'm open to suggestions on the ...
2
votes
4answers
97 views

How do I split string into array of multiple words?

I have a string that I'm using .split(' ') on to split up the string into an array of words. Can I use a similar method to split the string into an array of 2 words instead? Returns an array where ...
0
votes
0answers
27 views

Ruby using libxml to order strings

I would like to use the libxml and I have the following problem. XML Code <?xml version="1.0" encoding="UTF-8" standalone="no"?> <CteObject id="c0"> <!--Created by CTE XL ...

1 2 3 4 5 21