dart_profanity 1.0.0 copy "dart_profanity: ^1.0.0" to clipboard
dart_profanity: ^1.0.0 copied to clipboard

This package censores profanity in String sequences and delivers some censor options for your needs.

example/dart_profanity_example.dart

import 'package:dart_profanity/dart_profanity.dart';

void main() {
  final profanity = Profanity();
  final result = profanity.censor(
    'FuckYou assfuckerAsshole and pUSSy!',
    bleepType: CensorBleepType.asterisk,
    censorType: CensorType.firstLetter,
  );
  print('result: $result');

  //final profanity = Profanity(languages: ['de', 'en', 'gg']);
  //final censored = profanity.censor('Du bist ein mega Arschloch & DuWichser.');
  //print('censored0: $censored');

  //final censored1 = profanity.censor('Du bist ein mega Arschloch & DuWichser.');
  //print('censored1: $censored1');

  //final dartProfanity2 = Profanity();
  //final censored2 = dartProfanity2.censor('Du bist ein mega arschloch & DuAsS!');
  //print('censored2: $censored2');

  //final censored3 = dartProfanity2.censor(
  //  'Du bist ein mega arschloch & DuAsS!',
  //  censorType: CensorType.firstLetter,
  //);
  //print('censored3: $censored3');
}
2
likes
150
pub points
34%
popularity

Publisher

unverified uploader

This package censores profanity in String sequences and delivers some censor options for your needs.

Homepage

Documentation

API reference

License

MIT (license)

More

Packages that depend on dart_profanity