Advertisement
Guest User

Untitled

a guest
Jul 6th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.44 KB | None | 0 0
  1. import 'dart:html';
  2.  
  3. void main() {
  4.   var str = '''
  5. v  -2.746000 4.243202 8.628900
  6. v  -2.746000 4.100002 8.628900
  7. v  -11.374721 4.100002 8.628900
  8. v  -11.374721 4.243202 8.628900
  9. v  -2.746000 4.243202 3.528900
  10. v  -2.746000 4.100002 3.528900
  11. v  -11.374721 4.100002 3.528900
  12. v  -11.374721 4.243202 3.528900
  13. ''';
  14.  
  15.   window.console.log(str.replaceAll('\\\n', ''));
  16.   window.console.log(str.replaceAll(new RegExp('\\\n'), ''));
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement