Git Product home page Git Product logo

stringsplitter's Introduction

StringSplitter Library for Arduino

An Arduino library that adds string splitting functionality to character delimited C++ strings.

Features

  • Adds string splitting functionality to Arduino.
  • Can specify the maximum number of substrings, via limit up to MAX.
  • MAX is 5 by default and can be overridden in StringSplitter.h.
  • limit equal to and below 1, returns the whole input string.
  • The last substring contains the remaining part of the whole string, including delimiters.
  • If delimiter is not found, the whole string can be found in the first substring.

Methods

1. Initialization

new StringSplitter(String input, char delimiter, unsigned int limit);
* Return: StringSplitter object.
* input: String with delimiters to be split.
* delimiter: Character around which string will be split. Not included in substrings.
* limit: Maximum number of substrings. Overriden by MAX in StringSplitter.h

2. Get Substring Count

int getItemCount();
* Return: Number of substrings. Min = 1, Max = (limit or MAX, whichever is lesser).

2. Get Substring at Index

String getItemAtIndex(int index);
* Return: Substring of input string.
* index: Position of substring with respect to the input string. Starts from 0.

Usage

#include "StringSplitter.h"

StringSplitter *splitter = new StringSplitter("abc,def,ghi,jkl", ',', 3);
int itemCount = splitter->getItemCount();

for(int i = 0; i < itemCount; i++){
  String item = splitter->getItemAtIndex(i);
}

stringsplitter's People

Contributors

aharshac avatar

Watchers

James Cloos 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.