WRApplication
External kratos "application" for multiscale time integration.
|
Static-only utility class for common regexes. More...
Static Public Member Functions | |
Inquiry | |
static std::pair< std::string, std::regex > | Integer () |
Get a string-regex pair representing an integer. More... | |
static std::pair< std::string, std::regex > | UnsignedInteger () |
Get a string-regex pair representing an unsigned integer. More... | |
static std::pair< std::string, std::regex > | FloatingPoint () |
Get a string-regex pair representing an integer. More... | |
Static-only utility class for common regexes.
Static access to pairs of regex patterns (as std::string
) and their associated regexes (as std::regex
).
|
static |
Get a string-regex pair representing an integer.
Matches the following pattern:
std::string
of a regex pattern representing a floating point number in decimal or scientific notation.std::regex
of that string.
|
static |
Get a string-regex pair representing an integer.
Matches the following pattern:
std::string
of a regex pattern representing an integer.std::regex
of that string.
|
static |
Get a string-regex pair representing an unsigned integer.
Matches the following pattern:
std::string
of a regex pattern representing an unsigned integer.std::regex
of that string.