\b;Anweisung \c;strval\n;
Konvertiert einen \l;String\u cbot\string; in eine Zahl. Verwechseln Sie nicht den \l;String\u cbot\string; \c;"45"\n;, der die zwei Zeichen \c;4\n; und \c;5\n; enthält, mit der Zahl \c;45\n;.

Beispiele:
\s;\c;	string s = "45"+"12";  // s enthält "4512"
\s;	float  n =  45 + 12;   // n enthält 67
\n;
Syntax:
\s;\c;strval ( string );\n;
\n;
Beispiele:
\s;\c;	float n = strval("1.23");     // n ist 1.23
\s;	float n = strval("12abc45");  // n ist 12
\s;	float n = strval("abc");      // n ist 0
\s;	float n = strval("100")+2;    // n ist 102
\n;
\t;Siehe auch
\l;Strings\u cbot\string;, \c;\l;strlen\u cbot\strlen;\n;, \c;\l;strleft\u cbot\strleft;\n;, \c;\l;strright\u cbot\strright;\n;, \c;\l;strmid\u cbot\strmid;\n;, \c;\l;strfind\u cbot\strfind;\n;, \c;\l;strupper\u cbot\strupper;\n;, \c;\l;strlower\u cbot\strlower;\n;
Die \l;CBOT-Sprache\u cbot;, \l;Variablentypen\u cbot\type; und \l;Kategorien\u cbot\category;.
