Hi All,
I am reading PDF document and the output of that I need to check the keywords is available or not, its like 10 keywords.
Shall I place if statement with or as condition. Any suggestion how to go?
Thank you
Hi All,
I am reading PDF document and the output of that I need to check the keywords is available or not, its like 10 keywords.
Shall I place if statement with or as condition. Any suggestion how to go?
Thank you
Hey @Shatran
You can create a List of keywords and loop through it to see if each one is in the PDF text. You can do it like this:
List<String>, like: {"keyword1", "keyword2", "keyword3", ..., "keyword10"}.text.Contains(CurrentItem).