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 6598471
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T18:21:11+00:00 2026-05-25T18:21:11+00:00

I am parsing string records in this form: description: double/double/double for ex.: item description:

  • 0

I am parsing string records in this form:

description: double/double/double

for ex.:

item description: 0.4/8/-24.66

Each record should result in an object:

new MyObj("first item", 0.4, 2.4, -24.66)

I could easily do this with a regular expression and a procedural approach, but the resulting code is error-prone and rather ugly (at least from a functional point of view).

How can this be accomplished in a more elegant way?

  • 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-05-25T18:21:12+00:00Added an answer on May 25, 2026 at 6:21 pm

    Or you can just create a simple parser function string->MyObj like this:

    type MyObj(descr:string, a:float, b:float, c:float) =
        override this.ToString() =
            System.String.Format("{0}: {1}; {2}; {3}", descr,a,b,c)
    
    let myobjfromstr (str:string) = 
        let flds = str.Split([|':';'/'|])
        let ip s = System.Double.Parse(s)    
        new MyObj(flds.[0], ip flds.[1], ip flds.[2], ip flds.[3])
    
    myobjfromstr "item description: 0.4/8/-24.66" |> printfn "%A"
    

    (update: I guessed that records were separated by a new-line or something like that and were split into a list. On the second thought, there’s nothing like that in your question…)

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

Sidebar

Related Questions

I'm parsing a XML string into XMLDocument object. I want to search for a
I got a string from parsing a XML file which looks like this: Fri,
I am parsing a very large file of records (one per line, each of
I have a MySQL table called items that contains thousands of records. Each record
It seems that the choice to use string parsing vs. regular expressions comes up
I'm looking at parsing a delimited string, something on the order of a,b,c But
I'm doing simple string input parsing and I am in need of a string
I'm doing some attribute parsing as a string, so I need to know how
Perl is really good for writing the kind of string/file parsing programs that I
I'm parsing text from a file and storing it in a string. The problem

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.