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

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
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"