Skip to content
Discussion options

You must be logged in to vote

Die Umwandlung von Text (String) in einen Wert mit Einheit (Quantity) ist über einen kleinen Umweg möglich.
Beispielsweise kann ein Text in einen Zahlenwert, z. B. Double, umgewandelt werden, der dann wiederum über die Typumwandlung "as" in einen Wert mit Einheit umgewandelt werden kann. Für die Umwandlung eines Textes in einen Zahlenwert können bekannte Javamethoden verwendet werden.
Beispiel:
val text = "13.5"
val textAsQuantity = Double.valueOf(text) as Unit[mm]

English version:
The conversion of text (string) into a value with a unit (quantity) is possible via a small detour.
For example, a text can be converted into a numerical value, e.g. double, which in turn can be converted into …

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by iils-mriestenpattgenrichter
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant