-3

I need to read a directory containing a number of csv files . I need to read ONLY those files such as : ABC*.csv or XYZ*.csv

Was trying as per this link here However when I tried it in postman it gave no results : ^(ABC|XYZ).*?\\.csv$")

I know this is a very simple check but am struggling with it ...

Edit1 : This is a simple Java application and does not involve R ( linked question )

Edit2 : here is the screenprint of what I am trying in notepad++ enter image description here

1 Answers1

1

The Filters input box does not support regular expressions.

As explained in the Notepad++ documentation:

The Filters list is a space-separated list of wildcard expressions that cmd.exe can understand, like *.doc foo.*.

So in your case you would want to enter:

ABC*.csv XYZ*.csv
trincot
  • 317,000
  • 35
  • 244
  • 286