Skip to content

Un module qui permet d'ajouter des méthodes complémentaires pour la manipulation des strings en javascript.

License

Notifications You must be signed in to change notification settings

Mathieu-PVP/stringManager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

stringManager

Un module qui permet d'ajouter des méthodes complémentaires pour la manipulation des strings en javascript.

Méthodes

Installation

npm install https://github.com/Mathieu-PVP/stringManager.git

Exemples

Importer la class stringManager avec Node.js

import StringManager from 'stringmanager';
const strManager = new StringManager();

Ou avec Javascript Vanilla (avoir live-server d'installé si les CORS bloquent l'accès)

<script type="module">
    import StringManager from './node_modules/stringmanager/index.js';
    const stringManager = new StringManager();
</script>
  1. Mettre une chaîne de caractères en capitales
strManager.string = 'Ma chaîne de caractères';
strManager.formatCapitalizeAll();
console.log(strManager.toString()); // Output : "Ma Chaîne De Caractères"
  1. Vérifer si une chaîne de caractères contient des emails
strManager.string = 'Voici ci-joint mon adresse mail : fakeadress@fakedomain.com';
console.log(strManager.containsEmails()); // Output : true
  1. Récupérer tous les numéros de téléphones présents dans une chaîne de caractères
strManager.string = 'Voici mes numéros de téléphones 00.00.00.00.00 ou 000.000.0000';
console.log(strManager.extractPhoneNumbers()); // Output : [ '00.00.00.00.00', '000-000-0000' ]
  1. Calculer le pourcentage de concordance entre 2 chaînes de caractères
strManager.string = 'Un exemple original';
console.log(strManager.matchStringPercentage('Un exemple ordinaire') + '%'); // 65.00%

Licence

MIT License

Copyright (c) 2024 Mathieu

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Credits

@Mathieu-PVP - Intégrateur Web à Alibee

About

Un module qui permet d'ajouter des méthodes complémentaires pour la manipulation des strings en javascript.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published