ParaMonte Fortran 2.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation. |
This module contains classes and procedures for various string manipulations and inquiries. More...
Data Types | |
interface | getCharSeq |
Generate and return a scalar string resulting from the concatenation of the individual elements (single-characters) of the input vector of characters. More... | |
interface | getCharVec |
Generate and return a vector of single-characters each element of which corresponds to one character in the input scalar string. More... | |
interface | getLenIndent |
Generate and return the number of non-overlapping repetitions of the input pattern in the input str until the first occurrence of a mismatch between pattern and the relevant segment of str .More... | |
interface | getMaxLoc |
Generate and return the location of the first occurrence of the maximum of the input string(s). More... | |
interface | getMaxVal |
Generate and return maximum character value in the input string(s). More... | |
interface | getMinLoc |
Generate and return the location of the first occurrence of the minimum of the input string(s). More... | |
interface | getMinVal |
Generate and return minimum character value in the input string(s). More... | |
interface | getStrWrapped |
Generate and return the input scalar string wrapped within the specified width while optionally prefixing each line and respecting the initial indentation in all subsequent lines. More... | |
interface | getTrimmedTZ |
Generate and return a vector of single-characters each element of which corresponds to one character in the input scalar string. More... | |
interface | isEndedWith |
Generate and return the location of the first occurrence of the minimum of the input string(s). More... | |
interface | operator(.alleq.) |
Generate and return .true. if the input scalar strings are equal (non-lexically), otherwise, return .false. . More... | |
Variables | |
character(*, SK), parameter | MODULE_NAME = "@pm_str" |
character(*, SK), parameter | SPACE = SK_" " |
The space character of default kind SK of length 1 . More... | |
character(*, SK), parameter | NLC = new_line(SK_"a") |
The newline character of default kind SK as returned by new_line(SK_"a") . More... | |
character(*, SK), parameter | UNDEFINED = SK_"UNDEFINED" |
The scalar character parameter of default kind SK containing "UNDEFINED" . More... | |
This module contains classes and procedures for various string manipulations and inquiries.
``"(g0,:,',')"``
to single back-ticks in any documentations in this module. Doxygen version 1.9 has difficultly parsing the code sections with single back-tick when the code contains advanced features of modern Fortran g0
edit descriptor.
Final Remarks ⛓
If you believe this algorithm or its documentation can be improved, we appreciate your contribution and help to edit this page's documentation and source file on GitHub.
For details on the naming abbreviations, see this page.
For details on the naming conventions, see this page.
This software is distributed under the MIT license with additional terms outlined below.
This software is available to the public under a highly permissive license.
Help us justify its continued development and maintenance by acknowledging its benefit to society, distributing it, and contributing to it.
character(*, SK), parameter pm_str::MODULE_NAME = "@pm_str" |
Definition at line 79 of file pm_str.F90.
character(*, SK), parameter pm_str::NLC = new_line(SK_"a") |
The newline character
of default kind SK as returned by new_line(SK_"a")
.
Definition at line 88 of file pm_str.F90.
character(*, SK), parameter pm_str::SPACE = SK_" " |
The space character
of default kind SK of length 1
.
Definition at line 83 of file pm_str.F90.
character(*, SK), parameter pm_str::UNDEFINED = SK_"UNDEFINED" |
The scalar character
parameter of default kind SK containing "UNDEFINED"
.
Definition at line 93 of file pm_str.F90.