Hi all,
I have a folder full of measurement data already in the .jmp format. With JSL and the Multiple File Import I'm defining a search string which only should open files with that string. Here ist what that part of my script looks like:
searchstring="202112*;*322958*";
dt_raw=Multiple File Import(
<<Set Folder( "C:\Folder\" ),
<<Set Show Hidden( 0 ),
<<Set Subfolders( 0 ),
<<Set Name Filter( searchstring ),
<<Set Name Enable( 1 )
) << Import Data;
Unfortunately, It opens data containing the first string OR the second string instead of the first string AND the second (what I need). Is there a way to define the search string that it opens files with the first AND second string?
Edit: The files I'm importing look like this: 202112041419_9301_007_322958_P_11217400_11217397_11217404_11217402_raw.jmp and differ in length and position of my search string from file to file.
Best, Christian