Can we use regular expression as argument for "id" in set_report_severity_id_action_hier method?

I would like to suppress UVM ERROR messages in the log file with Id’s: [mon_trans_'h0], [mon_trans_'h1], [mon_trans_'h2], [mon_trans_'h3]…

Can we use regular expression as argument for Id in function void set_report_severity_id_action_hier function or Is there a better way to do this?
uvm_top.set_report_severity_id_action_hier(UVM_ERROR, “mon_trans_*”, UVM_NO_ACTION);

In reply to azherkhan2431:
No, report ID’s do not make use of regular or glob expression matching.

Your options are to move the transaction number into the message body, or use a report catcher: uvm_report_catcher - tricky question | Verification Academy