简单使用正则表达式和分组count实现即可
select           
  REGEXP_SUBSTR(profile, '[a-z]{4,}') gender,
  count(*) number
from
  user_submit
  group by gender