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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T00:41:32+00:00 2026-06-12T00:41:32+00:00

I am using EPPLUS to retrieve string values from Excel. The strings take the

  • 0

I am using EPPLUS to retrieve string values from Excel. The strings take the form:
“117
60%
A”
and I split them at the linebreaks. This worked perfectly normal when I used Interop to retrieve the values. But I switched to EPPLUS because Interop is rather slow.
But suddenly the Parse method fails because the 60% does contain some additional …strings. They look and print normal, but the Visual Sutdio editor shows me that the string takes the form: ‘ “60%” & vbCr & “” ‘. What is the meaning of the “&”. Normally it would show a string concenation, but that makes not too much sense.
Does anyone have an Idea about how to detect this problem?

Code:

dim TestString="117
60%
A"

Dim Splitstring() As String = Split(Value, Chr(10))

for i=0 to splitstring.length-1
    debug.print(Splitstring(i))
next
  • 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-12T00:41:33+00:00Added an answer on June 12, 2026 at 12:41 am

    The reason is that you split only with chr(10) = LF while the CR (chr(13)) remains in your string. Windows uses CRLF (13,10) as a line terminator – a relic from the days of the terminals.

    try:

    dim TestString as string = "117
    60%
    A"
    
    Dim Splitstring() As String = Split(TestString.Replace(vbCr,""), vbLf)
    
    for i=0 to splitstring.length-1
        debug.print(Splitstring(i))
    next
    

    This way it doesn’t matter if there is a CR or not (ie. Linux text files) that are being parsed. Hope this helps.

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

Sidebar

Related Questions

I'm using the EPPLUS library to read data from Excel to create another file.
Using import datetime in python, is it possible to take a formatted time/date string
Using linq2sql I'm trying to take the string in txtOilChange and update the oilChange
Using php/html, I want to retrieve email addresses (plus other information) from MySQL and
Using Java,I have to fetch multiple sets of values from an XML file to
When I try to generate an Excel file using EPPlus, Excel give me the
I am trying to open an Excel document using EPPlus reference/package. I can't get
I'm creating an excel file in memory using the MemoryStream API and EPPlus for
I'm using Epplus to render an Excel spreadsheet into HTML. So far it's going
I'm using EPPlus to generate Excel files, in DAL I'm populating DataTable , filling

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.