remove 1.0.4 remove: ^1.0.4 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.
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);