\b;Instrução \c;strval\n;
Converte uma string para número. Não confunda a string \c;"45"\n; que contém os carácteres \c;4\n; e \c;5\n; com o número \c;45\n;.

Exemplos:
\s;\c;	string s = "45"+"12";  // s contém "4512"
\s;	float  n =  45 + 12;   // n contém 67
\n;
Sintaxe:
\s;\c;strval ( string );\n;
\n;
Exemplos:
\s;\c;	float n = strval("1.23");     // n recebe 1.23
\s;	float n = strval("12abc45");  // n recebe 12
\s;	float n = strval("abc");      // n recebe 0
\s;	float n = strval("100")+2;    // n recebe 102
\n;
\t;Veja também
\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;
\l;Programação\u cbot;, \l;tipos\u cbot\type; e \l;categorias\u cbot\category;.
