Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
StringUtil.cpp
- Committer:
- tichise
- Date:
- 2018-04-29
- Revision:
- 1:5a7b4310d67c
- Parent:
- 0:28fdf43083f9
File content as of revision 1:5a7b4310d67c:
#include "StringUtil.h"
#include "mbed.h"
StringUtil::StringUtil() {
}
// 文字列textからstart_stringとend_stringで囲まれた部分を抽出する。
string StringUtil::slice(string text, string startString, string endString)
{
int startPosition = text.find(startString);
int endPosition = text.rfind(endString);
return text.substr(startPosition + 1, endPosition - endPosition - 1);
}