Instructions: This feature allows you to upload multiple files and automatically group them into discharges based on patterns in the filenames. Files that belong to the same discharge should have similar names.
Step 1: Select Files
Select all the .txt files you want to upload. They will be grouped automatically.
Files Selected:0 files
Step 2: Discharge Grouping Pattern
Use a regular expression to capture the discharge ID from filenames. The capture group (parentheses) should contain the discharge identifier.
Examples:
• DES_(\d+) - matches "DES_123", "DES_456", etc.
• discharge_(\d+) - matches "discharge_001", "discharge_002", etc.
• exp_([A-Z]+\d+) - matches "exp_A123", "exp_B456", etc.
Step 3: File Exclusion Pattern (Optional)
Optional regular expression to exclude certain files. Leave empty to include all files.
Examples:
• .*_backup\. - excludes files with "_backup." in the name
• .*\.temp$ - excludes files ending with ".temp"
• .*(backup|temp|old).* - excludes files containing "backup", "temp", or "old"