Hi guys ,
I just want to check in the PDF form whether Patient Summary Form keyword is available or not…
And That keyword is Not always on the Top side… sometime they have uploaded reversely…
Can u tell me how can i do…
Hi guys ,
I just want to check in the PDF form whether Patient Summary Form keyword is available or not…
And That keyword is Not always on the Top side… sometime they have uploaded reversely…
Can u tell me how can i do…
Read the pdf using read pdf text or read pdf with ocr and th output is stored in string
Take if:
Str_PdfData.ToString.Contains(“Patient Summary Form”)
Perform actions
yes , i already try this… but in my case i have to read another form also which is different … and sometime in that form also "Patient Summary form " keyword is available…
Str_PdfData.ToString.Contains(“Patient Summary”)
Use the Read PDF Text activity to read the pdf and store it in a text variable.
First write the variable to notepad by using write text file if all the data is extracting then use this Read PDF Text activity or use read pdf with OCR activity to extract.
In the Output of Read pdf with OCR output is in string datatype.
System.Text.RegularExpressions.Regex.IsMatch(Stringoutput variable from activity,“(Patient Summary Form)”)
Take an assign activity and take a boolean variable and write the above expression in value field.
Then check it with If condition that boolean variable is true of false.
Hope it helps!!
Try giving another unique keyword including with the “Patient Summary form”
Use the read pdf with OCR activity because its a scanned pdf. Then check if the required data is extracting perfectly or not if the data is not being extracted correct then change the scale in the properties panel of the OCR used and the default value will be 2 but you can try changing that from 1 and goes up and when the data was extracted perfect then you can pass the output variable of the read pdf with ocr activity in if condition as variable.contains(“Patient Summary Form”).ToString and please place the remaining activities in the then condition.
Hope it works !!