String manipulation library

Committer:
tichise
Date:
Sun Apr 29 04:50:06 2018 +0000
Revision:
0:28fdf43083f9
Child:
2:ea93cc1c113a
????

Who changed what in which revision?

UserRevisionLine numberNew contents of line
tichise 0:28fdf43083f9 1 #ifndef MBED_STRING_UTIL_H
tichise 0:28fdf43083f9 2 #define MBED_STRING_UTIL_H
tichise 0:28fdf43083f9 3
tichise 0:28fdf43083f9 4 #include "mbed.h"
tichise 0:28fdf43083f9 5 #include <string>
tichise 0:28fdf43083f9 6
tichise 0:28fdf43083f9 7 class StringUtil
tichise 0:28fdf43083f9 8 {
tichise 0:28fdf43083f9 9 public:
tichise 0:28fdf43083f9 10 StringUtil();
tichise 0:28fdf43083f9 11 string matchSlice(string str, string startStr, string endStr);
tichise 0:28fdf43083f9 12
tichise 0:28fdf43083f9 13
tichise 0:28fdf43083f9 14 private:
tichise 0:28fdf43083f9 15 };
tichise 0:28fdf43083f9 16
tichise 0:28fdf43083f9 17 #endif