function__regex Function

private pure function function__regex(pattern, text) result(res)

The function implemented for the regex_f function.

Arguments

Type IntentOptional Attributes Name
character(len=*), intent(in) :: pattern
character(len=*), intent(in) :: text

Return Value character(len=:), allocatable


Source Code

   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