npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

string-utils-basic

v1.0.8

Published

basic string utils library

Downloads

28

Readme

String Utilities Basic

A collection of basic string manipulation functions written in JavaScript. These functions provide a variety of utilities for validating, formatting, and transforming strings.

Functions Overview

| Function Name | Description | |----------------------------------------------|-----------------------------------------------------------------------------------------------| | basicValidation | Validates if the input is a string. | | removeAllWhiteSpacesExceptOnesInBetween | Removes all unnecessary whitespace characters, except for single spaces between words. | | removeNonAlphaNumericExceptSpacesInBetween | Removes all non-alphanumeric characters except spaces. | | capitalizeString | Capitalizes the first letter of each word in the string. | | countWordsInString | Counts the number of words in a string. | | reverseString | Reverses the entire string. | | reverseWordsInString | Reverses the order of words in the string. | | truncateString | Truncates the string to a specified length and appends "..." if truncated. | | snakeString | Converts the string to snake_case. | | kebabString | Converts the string to kebab-case. | | camelString | Converts the string to camelCase. | | isCamelCase, isSnakeCase, isKebabCase | Boolean functions to check if a string is in camelCase, snake_case, or kebab-case, respectively.| | delJsComments | Deletes JavaScript comments from a string. | | getJsComments | Retrieves JavaScript comments from a string. | | hasJsComments | Checks if a string has JavaScript comments. | | countJsComments | Counts the number of JavaScript comments in a string. | | delCssComments | Deletes CSS comments from a string. | | getCssComments | Retrieves CSS comments from a string. | | hasCssComments | Checks if a string has CSS comments. | | countCssComments | Counts the number of CSS comments in a string. | | urlValidation | Validates URLs according to a specified pattern. | | getQueryParams | Extracts query parameters from a URL string. | | getQueryString | Extracts the query string from a URL string. | | hasIpAddress | Checks if a string contains an IP address. | | getIpAddresses | Retrieves IP addresses from a string. | | delIpAddresses | Deletes IP addresses from a string. | | countIpAddresses | Counts the number of IP addresses in a string. | | hasEmail | Checks if a string contains email addresses. | | getEmails | Retrieves email addresses from a string. | | delEmails | Deletes email addresses from a string. | | countEmails | Counts the number of email addresses in a string. | | dateValidation | Validates the format of a date string. Returns true if the date string matches common date formats, otherwise false. | | hasEmoji | Checks if a string contains emojis. | | getEmojis | Retrieves emojis from a string. | | delEmojis | Deletes emojis from a string. | | countEmojis | Counts the number of emojis in a string. |

Note: Digits are included in snake_case, kebab-case, and camelCase.

Usage

To use these functions in your project, require the module and call the desired function:

const {
    basicValidation,
    removeAllWhiteSpacesExceptOnesInBetween,
    removeNonAlphaNumericExceptSpacesInBetween,
    capitalizeString,
    countWordsInString,
    reverseString,
    reverseWordsInString,
    truncateString,
    snakeString,
    kebabString,
    camelString,
    isCamelCase,
    isSnakeCase,
    isKebabCase,
    delJsComments,
    getJsComments,
    hasJsComments,
    countJsComments,
    delCssComments,
    getCssComments,
    hasCssComments,
    countCssComments,
    urlValidation,
    getQueryParams,
    getQueryString,
    hasIpAddress,
    getIpAddresses,
    delIpAddresses,
    countIpAddresses,
    hasEmail,
    getEmails,
    delEmails,
    countEmails,
    dateValidation,
    hasEmoji,
    getEmojis,
    delEmojis,
    countEmojis
} = require('string-utils-basic');

// Example usage:

console.log(capitalizeString("hello world"));

// Outputs: "Hello World"

Installation

git clone https://github.com/your-username/string-utils-basic.git
cd string-utils-basic
npm i

Running Tests

npm test

Project By

Apoorv Shrivastava

npm package link

https://www.npmjs.com/package/string-utils-basic

Contributing

Feel free to submit issues or pull requests if you have suggestions or improvements.

License

This project is licensed under the MIT License.

This summary provides a clear overview of the functionality provided by your string utility functions, along with instructions on how to use, install, and test them.