A Microsoft extension to the ANSI SQL language that includes procedural programming, local variables, and various support functions.
No, you cannot use wildcards. However you could write a simple script to generate the commands and run them.
select 'REVOKE ' + prm.permission_name + ' ON ' + CONCAT(OBJECT_SCHEMA_NAME(major_id), CASE WHEN OBJECT_SCHEMA_NAME(major_id) IS NULL THEN '' ELSE '.' END, OBJECT_NAME(major_id)) + ' TO ' + rol.name + char(13) COLLATE Latin1_General_CI_AS
from sys.database_permissions prm
join sys.database_principals rol on
prm.grantee_principal_id = rol.principal_id
where rol.name = 'public'