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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T06:02:12+00:00 2026-05-13T06:02:12+00:00

How can I parse my CSV file without parsing first line ? This class

  • 0

How can I parse my CSV file without parsing first line ?

This class work but I don’t want to parse the header of my CSV.

import groovy.sql.Sql

class CSVParserService {

    boolean transactional = false

    def sql = Sql.newInstance("jdbc:mysql://localhost/RProject", "xxx", "xxx", "com.mysql.jdbc.Driver")

    def CSVList = sql.dataSet("ModuleSet")

    def CSVParser(String filepath, boolean header) {

      def parse = new File(filepath)

      // split and populate GeneInfo
      parse.splitEachLine(',') {fields ->

        CSVList.add(
                Module : fields[0],
                Function : fields[1],
                Systematic_Name : fields[2],
                Common_Name : fields[3],
              )

         return CSVList
      }

    }
}

I change my Class, so now I have :

import groovy.sql.Sql

class CSVParserService {

    boolean transactional = false

    def sql = Sql.newInstance("jdbc:mysql://localhost/RProject", "xxx", "xxx", "com.mysql.jdbc.Driver")

    def CSVList = sql.dataSet("ModuleSet")

    def CSVParser(String filepath, boolean header) {

    def parse = new File(filepath).readLines()[1..-1]

    parse.each {line ->

      // split and populate GeneInfo
      line.splitEachLine(',') {fields ->

        CSVList.add(
                Module : fields[0],
                Function : fields[1],
                Systematic_Name : fields[2],
                Common_Name : fields[3],
              )

         return CSVList
      }
     }
    }
}

Works fine, until this part in my CSV :
“Homo sapiens interleukin 4 receptor (IL4R), transcript variant 1, mRNA.”

When my parser get this part, he cut in 3 (should be in 1) :
– Homo sapiens interleukin 4 receptor (IL4R)
– transcript variant 1
– mRNA.

How can I fix that ?
Thank you for your help.

— New comment —
Here is a copy (2nd line) of my CSV line :
“M6.6″,NA,”ILMN_1652185″,NA,NA,”IL4RA; CD124″,NA,”NM_000418.2″,”16″,”16p12.1a”,”Homo sapiens interleukin 4 receptor (IL4R), transcript variant 1, mRNA.”,3566,…

As you can see my problem is in line “Homo sapiens interleukin 4 receptor (IL4R), transcript variant 1, mRNA.” ; I don’t want to cut text between ” and “. My parser should only split ‘,’ out of quotes (but not commas between quotes).
For example I have : “part1″,”part2″,”part3”, I just want cut part1, part2, part3, and if there are commas in my part2, I don’t want to cut these commas.

To sum up, I just want Ignoring commas in quoted elements.

  • 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-13T06:02:13+00:00Added an answer on May 13, 2026 at 6:02 am

    Ok, I have my Fix !

    Here the code :

    import groovy.sql.Sql
    
    class CSVParserService {
    
        boolean transactional = false
    
        def sql = Sql.newInstance("jdbc:mysql://localhost/RProject", "xxx", "xxx", "com.mysql.jdbc.Driver")
    
        def CSVList = sql.dataSet("ModuleSet")
    
        def CSVParser(String filepath, boolean header) {
    
        def parse = new File(filepath).readLines()[1..-1]
    
        def token = ',(?=([^\"]*\"[^\"]*\")*[^\"]*$)'
    
        parse.each {line ->
    
          // split and populate GeneInfo
          line.splitEachLine(token) {fields ->
    
            CSVList.add(
                    Module : fields[0],
                    Function : fields[1],
                    Systematic_Name : fields[2],
                    Common_Name : fields[3],
                  )
    
             return CSVList
          }
         }
        }
    }
    

    See this post for more details :
    Java: splitting a comma-separated string but ignoring commas in quotes

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

Sidebar

Ask A Question

Stats

  • Questions 293k
  • Answers 293k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You sort of answered your own question - build your… May 13, 2026 at 6:29 pm
  • Editorial Team
    Editorial Team added an answer your using a fixed address, that is generally a very… May 13, 2026 at 6:29 pm
  • Editorial Team
    Editorial Team added an answer You can do it with regular expressions: import java.util.regex.*; class… May 13, 2026 at 6:29 pm

Related Questions

For a new import feature for my users, I'm using fgetcsv to read CSV
I need to insert about 1.8 million rows from a CSV file into a
We need to parse an XML file with XSLT into a CVS file. The
I have a 2 MB file, not too large, that I'd like to put
So one of the common tasks that I do as a programmer is debugging

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.