String manipulation library

Revision:
0:28fdf43083f9
Child:
2:ea93cc1c113a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/StringUtil.h	Sun Apr 29 04:50:06 2018 +0000
@@ -0,0 +1,17 @@
+#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
\ No newline at end of file