<html dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" id="owaParaStyle">P {margin-top:0;margin-bottom:0;}</style>
</head>
<body data-pinterest-extension-installed="ff1.37.9" fpstyle="1" ocsi="0">
<div style="direction: ltr;font-family: Tahoma;color: #000000;font-size: 10pt;"><br>
Would be cool in future release to have a better String API.<br>
String.Match(regexp) => return position of match or -1 if it doesn't match<br>
String.Replace(regexp,flag) (where flag is i for insensitive, g for global, ....)<br>
String.ToUpper()<br>
String.ToLower()<br>
<br>
Also string<-> numbers convertion could be achieved with + operator.<br>
<br>
Adding a string containing a number to an existing number should result a number or #NaN (not a number)<br>
Adding a number to an existing string should concatenate that number.<br>
By that way you can address all needs.<br>
a = 8 + "45" // a=53<br>
a = 0 + "37" // a=37 (converted from string to number)<br>
a = "" + 32 // a="32" (number converted to string (actual behavior)<br>
a = 8 + "foo" // a="#NaN"
<div><br>
My 2 cents.<br>
<div style="font-family:Tahoma; font-size:13px">
<div style="font-family:Tahoma; font-size:13px">
<div style="font-family:Tahoma; font-size:13px">
<div style="font-family:Tahoma; font-size:13px"><font face="Tahoma">-- <br>
   Olivier LAHAYE<br>
   CEA DRT/LIST/DIR</font><br>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>