We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecd2449 commit b0aeda0Copy full SHA for b0aeda0
dart/trim.dart
@@ -0,0 +1,6 @@
1
+void main() {
2
+ String message = " Hello ";
3
+ print("***" + message.trimRight() + "***");
4
+ print("***" + message.trimLeft() + "***");
5
+ print("***" + message.trim() + "***");
6
+}
0 commit comments