Code Monkey home page Code Monkey logo

stringcounter's Introduction

StringCounter

Description

It's a C# library that adds extension methods to strings to do a couple cool things.

What It Does

This library (when provided with a string obviously) will allow the programmer to count the # of words in a string or get the first letter of each word.
This can be useful if you're trying to make a program that tells the user how many words they've typed.

using StringCounter;
using System;

public class Program
{
    public static void Main(string[] args)
    {
        string sentence = "'; The quick BROWN FOX jUmPeD over the LaZy dOG;.";
        
        Console.WriteLine(sentence);
        // output: '; The quick BROWN FOX jUmPeD over the LaZy dOG;.
        
        Console.WriteLine("\nThe sentence above has {0} words.", sentence.CountWords());
        // output: The sentence above has 9 words.
        
        Console.WriteLine("\nWord Beginnings:");
        Console.WriteLine(sentence.GetWordBeginnings());
        // output: Word Beginnings:
        // output: T, q, B, F, j, o, t, L, d
        
        // total output
        /*
            '; The quick BROWN FOX jUmPeD over the LaZy dOG;.
            
            The sentence above has 9 words.
            
            Word Beginnings:
            T, q, B, F, j, o, t, L, d
        */
    }
}

Download (C# Library)

StringCounter.dll

Download (C# Library / Console To Test DLL)

StringCounter.zip

stringcounter's People

Contributors

lexz-08 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.