how to parse Text Field (multi line) with JJUPIN

eric anier
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 2, 2014

Hi,

I want to parse a multi line text field with sample data below to a string array, how do i do this with jjupin sil?

I think i just need to replace the new_line with a comma and that it.

Text Field

One , One

Two , Two

Three , Three

expected output

String [] str

str = "One,One,Two,Two,Three,Three"

Thanks,

eric

1 answer

1 accepted

0 votes
Answer accepted
FlorinM
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 2, 2014

Hi Eric,

You can use http://confluence.kepler-rominfo.com/display/SIL/replaceto replace all \n and "," (comma) characters with a "|" (pipe) then cast the resulting string to a string[].

Example:

string s = TEST-123.description; // text to parse
s = replace(s, "\n", "|");
s = replace(s, ",", "|");
string [] array = s;

eric anier
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 3, 2014

just what i need.

thanks florin..

Stefan Broda
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
March 8, 2016

And would you have a tip how to, while splitting the string based on commas, to ignore the commas inside double quotes?

Many systems when they export to CSV will put columns that contain commas into quotes. E.g.

column1, column2, column3, "column4,test",column5

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events