First, thanks for cmake!<br>In cmake, how can I easily replace the first period "." 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 ".so", "." becomes ".so" 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>