Importing .CSV using BigText, Line End

samemerysamemery Member Posts: 60
Hi,

When importing a .CSV, ss there a way to recognize a Line End using the BigText.TEXTPOS(???);?

What would I enter in the ??? to in order to recognize a line break?

Thanks.

Comments

  • chris1129chris1129 Member Posts: 25
    line break, you are saying you want to switch to a new line? I think the ";" is a sign for switching to a new line.
    Learn forever
  • samemerysamemery Member Posts: 60
    I found a way! I assigned the Char variable to a text variable called LineBreak. Nav then could detect where the line break was.

    CHR13 is a Char variable.

    CHR13 := 13;
    LineBreak:=FORMAT(CHR13);

    Textposition := InputText.TEXTPOS(LineBreak);

    Thank you!
Sign In or Register to comment.