String manipulation library

StringUtil.h

Committer:
tichise
Date:
2018-04-29
Revision:
0:28fdf43083f9
Child:
2:ea93cc1c113a

File content as of revision 0:28fdf43083f9:

#ifndef MBED_STRING_UTIL_H
#define MBED_STRING_UTIL_H

#include "mbed.h"
#include <string>

class StringUtil
{
public:
    StringUtil();
    string matchSlice(string str, string startStr, string endStr);


private:
};

#endif