dartlang.org/ // Welcome to try.dartlang.org // // Here you can try out the Dart Language from the comfort of your own // *modern* web browser. When you run the code … it is submitted to AppEngine, // translated into the equivalent JavaScript, and run right in your browser window. // // Ok, your turn! main() { var greetingTemplate = 'Hello NAME, nice to meet you!'; var greeting = greetingTemplate.replaceFirst(new RegExp("NAME"), 'Bob'); print(greetingTemplate != greeting); // true }