public static string GetMiddleString(string str, string begin, string end)
{
if (string.IsNullOrEmpty(str))
{
return null;
}
string result = null;
// 해당 글자부터 끝까지 찾는거면
if (end == "")
{
str = str.Substring(str.IndexOf(begin) + begin.Length);
if (str.Length > -1) result = str.Substring(0, str.Length);
else result = str;
return result;
}
if (str.IndexOf(begin) > -1)
{
str = str.Substring(str.IndexOf(begin) + begin.Length);
if (str.IndexOf(end) > -1) result = str.Substring(0, str.IndexOf(end));
else result = str;
}
return result;
}
'삽질 > WP7.C#' 카테고리의 다른 글
[WP7] 비트맵을 브러시로 (0) | 2014.06.30 |
---|---|
[WP7] Horizontal ListBox (0) | 2013.08.09 |
[WP7] 윈도우폰 TextBlock New Line 추가 (0) | 2012.07.27 |
[WP7] 윈도우폰 설정 된 테마 색상 가져오기 (0) | 2012.04.04 |
[WP7] Visual Studio 2010 자주쓰는 단축키 (0) | 2012.04.04 |
댓글