2010-03-20 4 views

Répondre

5
var str1:String = 'SmartUserWantsToLive'; 
var str2:String = str1.replace(/([A-Z])/g, ' $1'); 

// split first character when it was a space, to support strings like 'fooBar' 
if (str2.charAt(0) == ' ') 
    str2 = str2.substr(1); 

trace(str2); // 'Smart user Wants To Live' 

modifier: par commentaire

var str3:String = 'SomeUsefulAPIFooBar'; 
var str4:String = str3.replace(/((?<![A-Z])[A-Z]|[A-Z](?![A-Z]))/g, ' $1'); 

if (str4.charAt(0) == ' ') 
    str4 = str4.substr(1); 

trace(str4); // 'Some Useful API Foo Bar' 
+0

brillant) et Hoew par exemple à garder API mot frob freinage à part? – Rella

+0

Mis à jour ma réponse. – poke

+0

Super réponse. Vraiment un gain de temps. –

Questions connexes