What language to automate review of documents? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What language to automate review of documents?

would python be a good choice to programming a code to (i) search & find key words in a document, (ii) return a copy of the entire sentence where the key words were found and (iii) list the missing key words?

25th Aug 2017, 3:11 PM
jols
6 Answers
+ 8
Actually, Python will be the best choice for this task, indeed. There are numerous libraries made specially for text mining and processing.
25th Aug 2017, 3:25 PM
Kuba Siekierzyński
Kuba Siekierzyński - avatar
+ 6
Yup, import re, man :) For proper construction of regex queries, you may use www.regex101.com, which supports PHP, JavaScript and Python syntax.
25th Aug 2017, 6:57 PM
Kuba Siekierzyński
Kuba Siekierzyński - avatar
+ 6
@Ace I use that a lot for my text mining tasks - works like a charm :)
25th Aug 2017, 7:30 PM
Kuba Siekierzyński
Kuba Siekierzyński - avatar
+ 1
Language choice is subjective but you'll definitely need regexp for such a program. Also you wrote phyton at the tags not python. ☺
25th Aug 2017, 6:17 PM
Haris
Haris - avatar
0
thanks a bunch! i should then keep on learning python!
25th Aug 2017, 3:28 PM
jols
0
thanks for the tip (regexp)... i just corrected the typo re python.
25th Aug 2017, 6:29 PM
jols