The function implemented for the regex_f
function.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | pattern | |||
character(len=*), | intent(in) | :: | text |
pure function function__regex(pattern, text) result(res) implicit none character(*), intent(in) :: pattern, text character(:), allocatable :: res call subroutine__regex(pattern, text, res) end function function__regex