1.Take get pdf page count activity and create a variable suppose =pdfpagecount
2.Take assign activity and
Create a variable= startpage and value =0
3.Take assign activity create variable
= endpage and value = 0
4…Take for each activity and pass condition like this = Enumerable. Range(1.pdfpagecount)
In loop:
Take read psf activity and create a variable= readpdf_Text
In loop take elsif activity and pass the condition like this
readpdf_Text.contains(“startpage matching text”)
Then section
Assign activity :
startpage = forech current item
Break
And again else if and pass condition
readpdf_Text.contains(“endpage matching text”)
Assign activity :
endpage = forech current item
Break
5.out of loop take else if activity and pass
Not startpage=0
Then section
Take assign activity
Startpage = startpage+3 ( number you can pass
For suppos a text is matching in first page so you need extract continues of 3 pages then give 3)
Same way take else if again and
endpage = endpage-3 ( number you can pass
For suppos a text is matching in end page so you need extract continues of 3 pages then give 3)
Out off loop
At the end you can take the extract pdf range activity and give the path and filepath and provide folder path
In the range you can give like this… startpage. Tostring+“-”+endpage
It will split and add the pages to one folder then you can pass it in digitize in loop
@postwick