diff --git a/language/types.xml b/language/types.xml index afdae86c7b..50a96607e3 100644 --- a/language/types.xml +++ b/language/types.xml @@ -1,5 +1,5 @@ - + Types @@ -1182,6 +1182,13 @@ $third = $str{2}; is converted to a string representing the number with its digits (including the exponent part for floating point numbers). + + + The decimal point character is defined in the script's + locale (category LC_NUMERIC). + See setlocale. + + Arrays are always converted to the string "Array", so you cannot dump out the contents of an array with @@ -1262,13 +1269,6 @@ $foo = "10.0 pigs " + 1.0; // $foo is float (11) ]]> - - - The decimal point character is defined in the script's - locale (category LC_NUMERIC). - See setlocale. - - For more information on this conversion, see the Unix manual page for strtod(3).