remove 1.0.8 copy "remove: ^1.0.8" to clipboard
remove: ^1.0.8 copied to clipboard

A library that makes the dumbest and simplest variable definition possible.

example/remove_example.dart

//  Copyright 2023 Snap_Lan

import 'package:remove/remove.dart';

void main() {
  var adsa = 0.01;
  adsa.ceil();
  var a = ["Hello", "안녕하세요", "こんにちは", "Γειά σου", "नमस्ते", "你好"];
  var b = "abcd";
  print(removeBrakets(a));
  b = resetString(b);
  print(b);
  b = "efg";
  print(b);
  b = removeSpecificLetter(b, "e");
  print(b);
  b = resetString(b);
  b = "aabbccaa";
  b = removeSpecificLetters(b, ["a", "c"]);
  print(b);
}
1
likes
0
pub points
87%
popularity

Publisher

verified publishersnaplan.o-r.kr

A library that makes the dumbest and simplest variable definition possible.

Repository (GitHub)
View/report issues

License

unknown (license)

More

Packages that depend on remove