functionreadToDot
reads string to the first dot
Information
This fuction reads the string up to the first dot. Helpfull to obtain the package name of a model.
Inputs
| Type | Name | Default | Description |
|---|---|---|---|
| String | inputString | "a.b.c" | string input |
Outputs
| Type | Name | Default | Description |
|---|---|---|---|
| String | beforeDot | part till first dot | |
| String | afterDot | part after first dot | |
| Boolean | dotFound | true if no dot is found |