HI any experts can point me in the right direction to use Regex to scrap the pdf table out into an excel? i need the highlighted in Red and Blue text to be scrap from PDF to excel
Yoichi
(Yoichi)
October 27, 2022, 4:10am
2
Hi,
Can you share your text from pdf as a text file? And also share expected output?
Regards,
Gokul001
(Gokul Balaji)
October 27, 2022, 4:22am
3
Hi @Teck_Hwee_Goh
In the PDF what are the data need to be extracted? Can you share the Input and Output ?
Check out the tutorial
This CheatSheet introduces the basic use of regex functions. With further examples also special cases are presented.
Introduction
From the namespace System.Text.RegularExpressions following methods are offered:
Regex.Match
Regex.Matches
Regex.isMatch
Regex.Replace
Regex.Split
A simple usage for example would look like this:
[grafik]
Recommendation:
add System.Text.RegularExpressions to the imports:
[grafik]
it allows to use the shortened statement, as the namespace part can be ommited…
Regards
Gokul