Pdf 표를 split으로 쪼개기

이렇게 pdf로 되어있는 표가 있는데, 각 행 단위로 String을 쪼개려는데 어떻게 해야 할까요?
Split을 이용해서 현재는 ReadText.Split(new String({Environment.NewLine},StringSplitOptions.None)일단 이렇게 해놨는데 쓸데 없는 빈 공간도 같이 출력 되더라구요… 알려주시면 감사하겠습니다ㅠ

Hi @ygyh258

First read the pdf using Read PDF Text Activity.
Write the text obtained in a text file using Write Text File Activity
Analyze the text obtained and see if the row of the table is in a single line
Then you can use the Split but you can also use Regular Expression to extract the table elements and save it in data table variable.

And use the split like this-> ReadText.Split({Environment.NewLine}, StringSplitOptions.None)