Skip to content

A very simple arduino library to use java like string-tokenizer functions to split a string with delimiters.

Notifications You must be signed in to change notification settings

syalujjwal/Arduino-StringTokenizer-Library

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

Arduino-StringTokenizer-Library

A very simple arduino library to use java like string-tokenizer functions to split a string with delimiters.

Basic description:

Params : string to tokenize; delimiter string

Functions :

(boolean) hasNext() - returns true if more tokens are available from input string.

(String) nextToken() - pops the next token and returns it. If no more tokens are avaiable, returns an empty string ("").

Declaration : StringTokenizer tokens( "input string", "delimiter string");

Check included example for more clarification.

About

A very simple arduino library to use java like string-tokenizer functions to split a string with delimiters.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages