Invoice Extraction: Extract PDF Invoice to Excel with UiPath

Invoice Extraction: Extract PDF Invoice to Excel with UiPath

8,661 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

Muhammad wahyudi
Muhammad wahyudi - 11.08.2023 18:50

thank you

Ответить
Overlord
Overlord - 09.07.2023 18:33

is just only can extract English language? I use Arabic language

Ответить
Doco RPA
Doco RPA - 25.06.2023 17:54

For the given invoice example in the video, the TextToLeft/Right works fine because the text part always appears BEFORE the value. I have an invoice when converted to text has the value AFTER the text e.g. "some thing is here 5,000 Total etc etc" rather than "some thing is here Total 5,000 etc etc". I can get the left part of Total to give me " some thing is here 5,000 " so in this case I would need to split the string by " " and get the last element of the string array, rather than the first which TextToLeft/Right gives you. i.e. the result would be "thing is here 5000 etc etc" if i tried to use TextToLeft/Right returning the right side. Of course I can just write my own split to return the last element, (or reverse the order of the lines in the original text and apply TextToLeft/Right) but it would have been nice to have a Boolean property in TextToLeft/Right to allow splitting by the last appearance of the separator , instead of always splitting by the first appearance of the separator.
I'm thinking of the business users of UiPath Studio /StudioX

Ответить
Doco RPA
Doco RPA - 25.06.2023 05:40

Use this method to extract straight forward data and combine with Regex for any data not conforming to this method

Ответить