Verify a character sequence for the absence any of the characters in a set of characters. In this version both the character sequence and the character set are represented by a string.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(string_type), | intent(in) | :: | string | |||
| type(string_type), | intent(in) | :: | set | |||
| logical, | intent(in), | optional | :: | back |
elemental function verify_string_string(string, set, back) result(pos) type(string_type), intent(in) :: string type(string_type), intent(in) :: set logical, intent(in), optional :: back integer :: pos pos = verify(maybe(string), maybe(set), pic_optional(back, .false.)) end function verify_string_string