Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Independent validation for trusted, AI-ready data integration. See why IDC named Qlik a Leader: Read the Excerpt!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

tFileList - Glob Expression to get filename - Process\d+.csv

Hi,

 

How to get the list of file whose name is Process0.csv, Process1.csv but not Process0_start.csv from tFile List.

 

I tried Process\d+\\.csv and "Process" + (\d+) + ".csv".

 

This doesn't seem to work.

 

Thanks.

Labels (2)
1 Solution

Accepted Solutions
manodwhb
Champion II
Champion II

@Moe ,use the below as file mask,it should work.

 

"Process"+"[0-9]+.csv"

 

or 

 

"Process"+"\\d+.csv"

View solution in original post

1 Reply
manodwhb
Champion II
Champion II

@Moe ,use the below as file mask,it should work.

 

"Process"+"[0-9]+.csv"

 

or 

 

"Process"+"\\d+.csv"