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

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

Remove #

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

pub package license

Usage #

First of all, import the library:

import 'package:remove/remove.dart';

Remove Functions

var a = ["Hello", "안녕하세요", "こんにちは", "Γειά σου", "नमस्ते", "你好"];
var b = "abcd";
var c = "aabbccddaa";
a = removeBrakets(a);
b = removeSpecificLetter(b, "a");
c = removeSpecificLetters(c, ["a", "c"]);

Reset Function

var d = "reset it!";
d = resetString(d);

A Simple Example

import 'package:remove/remove.dart';

void main() {
  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);
}

Output

Hello, 안녕하세요, こんにちは, Γειά σου, नमस्ते, 你好

efg
fg
bb
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