Loading...
Searching...
No Matches
operator(.contains.) Interface Reference

Definition

Check whether a string belongs to a list or not.

Remarks

Definition at line 164 of file string.f90.


The documentation for this interface was generated from the following file:

Methods

◆ characters_contain_character()

logical function characters_contain_character ( character(*), dimension(:), intent(in) lhs,
character(*), intent(in) rhs )

Checks whether an array of character contains a given character expression.

Parameters
[in]lhsarray of character
[in]rhscharacter expression to search for
Returns
.true. if rhs is present in lhs

Remarks

Definition at line 705 of file string.f90.

◆ characters_contain_string()

logical function characters_contain_string ( character(*), dimension(:), intent(in) lhs,
type(string), intent(in) rhs )

Checks whether an array of character contains a given string.

Parameters
[in]lhsarray of character
[in]rhsstring to search for
Returns
.true. if rhs is present in lhs

Remarks

Definition at line 726 of file string.f90.

◆ strings_contain_character()

logical function strings_contain_character ( type(string), dimension(:), intent(in) lhs,
character(*), intent(in) rhs )

Checks whether an array of string contains a given character expression.

Parameters
[in]lhsarray of string
[in]rhscharacter expression to search for
Returns
.true. if rhs is present in lhs

Remarks

Definition at line 684 of file string.f90.

◆ strings_contain_string()

logical function strings_contain_string ( type(string), dimension(:), intent(in) lhs,
type(string), intent(in) rhs )

Checks whether an array of string contains a given string.

Parameters
[in]lhsarray of string
[in]rhsstring to search for
Returns
.true. if rhs is present in lhs

Remarks

Definition at line 663 of file string.f90.