Fortran |
| Name | Description | |
|---|---|---|
| Substring(Char, Int32) | Retrieves a substring starting at a specified character position. | |
| Substring(String, Int32) | Returns a substring from the specified one-based start index to the end of the string. | |
| Substring(Char, Int32, Int32) | Retrieves a substring between two character positions. | |
| Substring(String, Int32, Int32) | Returns a substring using one-based inclusive indices. |