|
LCC
1. 0. 0.
Crystal cutting code
|
Module for manipulating strings. More...
Functions/Subroutines | |
| subroutine, public | lcc_get_word (string, posh, post, word) |
| Cut a word from string. More... | |
| subroutine, public | lcc_split_string (string, delimit, head, tail) |
| Split a string in two words uning a delimiter. More... | |
Module for manipulating strings.
| subroutine, public lcc_string_mod::lcc_get_word | ( | character(len=*), intent(in) | string, |
| integer, intent(in) | posh, | ||
| integer, intent(in) | post, | ||
| character(20), intent(inout) | word | ||
| ) |
Cut a word from string.
| string | Full string. |
| posh | Cut from position. |
| post | Cut to position. |
| word | Extracted word. |
| subroutine, public lcc_string_mod::lcc_split_string | ( | character(len=*), intent(in) | string, |
| character(1), intent(in) | delimit, | ||
| character(20), intent(inout) | head, | ||
| character(20), intent(inout) | tail | ||
| ) |
Split a string in two words uning a delimiter.
| string | Full string. |
| delimit | Delimiter. |
| head | First word. |
| tail | Last word. |