subroutine print_help_find_match_forgex_api implicit none character(LINE_SIZ) :: header character(LINE_SIZ) :: usage(2) character(CMD_SIZ) :: op(1) character(CMD_DESC_SIZ) :: odesc(1) header = "Executes a search for matches using the top-level API regex engine." usage(1) = "forgex-cli find match forgex <pattern> .match. <text>" usage(2) = "forgex-cli find match forgex <pattern> .in. <text>" op(1) = "--no-table" odesc(1) = "Suppress the output of the property information table." call generate_and_output(header, usage, "OPTIONS", op, odesc) end subroutine print_help_find_match_forgex_api