First, thanks for cmake!<br>In cmake, how can I easily replace the first period &quot;.&quot; in a string with a substitute using regex and string replace?<br>For example:<br>  z<br>  z.1<br>  z.1.2.5<br>With replacement &quot;.so&quot;, &quot;.&quot; becomes &quot;.so&quot; as in:<br>
  z.so<br>  z.so.1<br>  z.so.1.2.5<br>My regex is improving but not fast enough :)<br>Thanks,<br>Mikael<br>