| bio | website | 6ftdan.com |
|---|---|---|
| location | Winchester, VA | |
| age | 28 | |
| visits | member for | 10 months |
| seen | Feb 9 at 4:23 | |
| stats | profile views | 13 |
I enjoy programming in Ruby and Python. You can follow me on twitter @6ftdan
|
Jan 8 |
revised |
Ruby regex to match a four item line Added a link to the finished source code. |
|
Jan 6 |
comment |
Ruby regex to match a four item line I plugged the pattern from @Andrea Singh and used the scan suggestion from @the Tin Man pattern=Regexp.new('(.*)\s+(\d{2}\/\d{2}\/\d{4})\s*(\(?\$.\d+\.\d+\)?)\s+(\(?\$.\d+\.\d+\)?)')
line.scan(pattern) This gave me my desired output in a usable list/array. |
|
Jan 6 |
comment |
Ruby regex to match a four item line This is very nice! Thank you very much! |
|
Jan 6 |
accepted | Ruby regex to match a four item line |
|
Jan 6 |
comment |
Ruby regex to match a four item line This did the trick. I had to add a period after each dollar sign and then everything worked. (.*)\s+(\d{2}\/\d{2}\/\d{4})\s*(\(?\$.\d+\.\d+\)?)\s+(\(?\$.\d+\.\d+\)?) The periods after the dollar signs allowed for all brackets. |
|
Jan 6 |
comment |
Ruby regex to match a four item line(.*)\s+(\d{2}\/\d{2}\/\d{4})\s*(\(?\$.\d+\.\d+\)?)\s+(\(?\$.\d+\.\d+\)?) This worked for me. The PDF's have a lot of other garbage data, like a bank image, lots of info, and some other sorted data. So white space splitting won't work for me. |
|
Jan 6 |
awarded | Student |
|
Jan 6 |
asked | Ruby regex to match a four item line |
|
Jan 6 |
awarded | Supporter |
|
Jan 6 |
accepted | Compress a complete directory in Ruby with zlib? |
|
Dec 19 |
asked | Compress a complete directory in Ruby with zlib? |
|
Dec 12 |
awarded | Teacher |
|
Dec 12 |
revised |
Rails 3. How to get the difference between two arrays? fixed with .include? |
|
Dec 12 |
answered | Rails 3. How to get the difference between two arrays? |
|
Nov 2 |
accepted | Mechanize/Ruby read source code of 404 page |
|
Nov 2 |
asked | Mechanize/Ruby read source code of 404 page |
|
Oct 1 |
comment |
Watir rautomation mouse move does nothing Okay, I'm finding that the results with your details are same as Watir's built-in rautomation. But you have helped me figure out more. In both cases the mouse position is the absolute position to the operating system, and not the browser window. Which I can't use... not all IE's are created equal. It does move the position according to inspect and mouse.position. But the visible mouse doesn't move. Also in your second bit of code the object you create isn't mouse... because I need to exec mouse.mouse.move |
|
Sep 14 |
revised |
Watir rautomation mouse move does nothing additional info |
|
Sep 14 |
asked | Watir rautomation mouse move does nothing |
|
Aug 24 |
comment |
Ruby/Nokogiri inspect reveals more then class. I need the extra item inspect shows I got it! Awesome! Yes I used this code, but it needs to check for nil. `if not doc.at('img').nil?; puts doc.at('img')['src']; end' |