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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T22:58:05+00:00 2026-06-10T22:58:05+00:00

Is it possible in haskell to match complex patterns? I mean, I have a

  • 0

Is it possible in haskell to match complex patterns?

I mean, I have a Comma Separater Values (CSV) file:

name,ID,fieldA,fieldB

is it possible to write a function like:

getName (n:',':xs) = n

where n is not a single element but a list?

  • 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-10T22:58:06+00:00Added an answer on June 10, 2026 at 10:58 pm

    You should write a function to split your line…

    import Data.List
    
    parts = map tail . groupBy (/=) . (',':)
    

    Then you can write your accessor functions easily:

    getName xs = n where [n,_,_,_] = parts xs
    getID   xs = i where [_,i,_,_] = parts xs
    ...
    

    But as always it would be nice to use a data type:

    data Record = Record {getName :: String   
                         ,getId :: Int
                         ,getFieldA  
                         ,getFieldB :: String
                         } deriving Show 
    
    initRecord xs = Record name (read id) fieldA fieldB where
                    [name, id, fieldA, fieldB] = parts xs
    

    Of course, if you need error handling, it gets a little bit more difficult…

    BTW, there is a Haskell CSV lib out there: http://hackage.haskell.org/packages/archive/csv/0.1.1/doc/html/Text-CSV.html

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

Sidebar

Related Questions

I just wondered whether it's possible to match against the same values for multiple
I have a Haskell file which looks like this: longest::[Integer]->[Integer]->[Integer] max a b =
Possible Duplicate: Replace individual list elements in Haskell? I have managed to make some
Possible Duplicate: convert string list to int list in haskell I have a string
Is is possible to have reference to module in haskell? I have several modules,
As shown below, in Haskell, it's possible to store in a list values with
Possible Duplicate: Haskell Error: Couldn't match expected type Integer' against inferred type Int' How
Possible Duplicate: Haskell - Selectively Adding Lists I have a data type: data Film
Is it possible to have a doubly linked list in Haskell, and what's the
Possible Duplicate: Haskell ranges and floats If I generate a list in ghci like

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.