I want to have javascript regular expression to catch the text from .pdf file.
e.g. want to catch this text: 20-40-55 FIG 20
I wrote the following expression for that:
/[\d{2}-\d{2}-\d{2} FIG \d+]/g
It is not catching the required text.
If I pass there any other text of .pdf file, it is showing it in found items.