Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8908703
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T03:15:02+00:00 2026-06-15T03:15:02+00:00

How can I rip these values into the DB tables? First, I’ll just put

  • 0

How can I rip these values into the DB tables?

First, I’ll just put it out there, rather than letting you infer: I’m an ROR noob. I’m designing an app which populates the database–(SQLite) at this point–allows user to perform crud on these values, and exports the file in the same format as the original. This format is as such, and repeated through the document end. the ellipses represent the previous and next tones.

...

[Tone27]                            
Atone = 707.3                        
Btone = 746.8                        
Btonelength = 3                        
Btonedebounce = 1                    
Description = Fire Department 1                
mp3_Emails = email@address.com,email2@address.com,email3@address.com          
amr_Emails = email2@textmessaging.com,email1@textmessaging.com        
alert_command = c:\test.bat                
post_email_command = c:\test2.bat            
radio_frequency = 154.475    
exclude_from = 13:25                        
exclude_to = 13:35                        
exclude_emails = email2@textmessaging.com,email2@address.com

...

Now, the question is, in Rails, what is the easiest/most appropriate way to get these values into the db tables? I understand I must write a custom parser, but am not versed enough in ruby/rails to accomplish this efficiently.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T03:15:04+00:00Added an answer on June 15, 2026 at 3:15 am

    Custom Parser

    You need to read the file line by line and read out the attributes you want to save. It might look something like this:

    file = File.new('example.txt', 'r')
    while (line = file.gets)
      if line.match(/^\W[a-zA-Z0-9]*\W/) # practice your regex at rubular.com
        # create the object here
      end
      if line.match(/.*=.*/)
        pieces = line.split('=')
        key = pieces[0].strip
        value = pieces[1].strip
        # add this to the object here
      end
    end
    

    I’d suggest grabbing each line, trimming the whitespace (if any), and then splitting on the = sign, and then trimming again. There you have your key/value pair.

    Every [Tone##] would be a new object, so you’d want to plan that into your loop or loops.

    High Level Overview

    First you should to design your database tables using migrations and create models to support those tables.

    Next you need to parse the text files to create objects that have attributes and values of what you just parsed. This step is the purest ruby you will encounter (not much help at all from Rails here). This will require a custom parser to look in the text file for the particular values you want to pull out.

    Once you have the objects created with the attributes and values parsed out of the text file, you will want to save all of those objects to the database.

    I suggest building a sample or demo app before hammering away into this one. There are tutorials out there where you can have a simple app up and running within a couple hours at your experience level.

    That’s the high level overview of what you need to get done, each of those steps would most likely result in more specific StackOverflow questions.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can I authenticate with just Google account username and password instead of using OAuth?
First post here. Hoping you guys can help. It would be much appreciated and
Can anyone let me know how can we change the value of kendo combobox
Can I order my users in the database, so I don't have to say
Can I change the field public virtual ClassOne ClassOne { get; set; } to
Can any one tell, how to get the result of LINQ query contains group
Can we change the default action of the edit selected row button? Here is
Can someone thoroughly explain the last line of the following code: def myMethod(self): #
Can anyone enlighten me to a way I can Highlight the content of an
Can I be sure about the order in a Python dictionary? The function op.GetTangent(id)

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.