Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Arduino String/Stream add features #201

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
4 changes: 2 additions & 2 deletions api/String.h
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,8 @@ class String

// modification
void insert(char c, unsigned int index) { return insert(&c, index, 1); };
void insert(const String &str, unsigned int index, unsigned int length);
void replace(char find, char replace);
void insert(const String &str, unsigned int index, unsigned int length);
PiotrekB416 marked this conversation as resolved.
Show resolved Hide resolved
void replace(char find, char replace);
void replace(const String& find, const String& replace);
void remove(unsigned int index);
void remove(unsigned int index, unsigned int count);
Expand Down
Loading