[tw5] How can I filter fields that start with a specific string?

Hi,
I am trying to view multiple fields that begin with a specific string.
I am using fields:
entry 1
entry 2
entry 3
I tried using this method:
<$view field=“entry”/>
I want to be able to use a method that will view all fields starting with “entry”.
Does anyone know of a way to do this?

Try this:

<$list filter="[<currentTiddler>fields[]prefix[entry]]" variable="thisfield">
<$view field=<<thisfield>>/>
</$list>

enjoy,
-e

Thanks, this did the trick.
I have used TiddlyTools for the classic version. Do you have a site for TiddlyWiki5?
Thanks.