Can I Extract data from pdf color wise

I have one pdf file which in text color blue and black, I need extract only black color data please help

@Ankit_shukla

Try this:

use Read PDF Text: Output - pdfText

-Assign activity:
blackLines = pdfText.Split(Environment.NewLine.ToCharArray).
Where(Function(line) line.Contains(“black”)).
ToArray()

-Output Data Table

Cheers…!

blackLines = pdfText.Split(Environment.NewLine.ToCharArray).
Error- Can not convert method to char