The REGEXP operator in the List of Assets filter uses regular expressions in Lucene format. However, I tried this case, and it is working as a LIKE operator instead of checking the regular expression. We need to investigate this topic further. We will let you know once we have more details.
In the meantime, there is another option, which is using the Filter action, right after the List of Assets action. Here is an example of the filter expression you can use for your case:
(item, index) => { return /^mag/i.test(item.assetBasicInfo.name) }