Something like:
Select[yourdata, First/*StringMatchQ[___~~”a”~~___~~”60s”~~__]]
Should work… I don’t have my laptop now with me…
THIS WORK PERFECTLY! THANKS A LOT.
I would like also to take from this new list, the first parameter for each data set
this one for example
{"01-a-mas-480s.dat", {1.24}} {"02-a-mas-480s.dat", {0.77}} ect ect
how can I do it?
Use the [[]] notation to grab a part of an expression:
Yourvariable[[All,2]]
Or
Yourvariable[[All,2,1]]