/// <summary>
/// 문자열에서 실수부분만 추출
/// </summary>
/// <param name="number"></param>
/// <returns></returns>
public string getRealNumber(string number)
{
string tempValue = "0";
try
{
Regex pattern = new Regex(@"[0-9]+(\.|\,)[0-9]+");
Match match = pattern.Match(number);
tempValue = match.Value;
}
catch (Exception ex)
{
Console.WriteLine(ex.ToString());
}
return tempValue;
}
'Web_Application > C#' 카테고리의 다른 글
[Selenium] Unexpected error launching Internet Explorer. Protected Mode must be set to the same value (0) | 2017.03.29 |
---|---|
[Selenium] Web Driver download link (0) | 2017.03.29 |
[C#]제곱미터를 평으로 변환 (0) | 2017.03.22 |
특정 url을 실행 중인 ie 종료 (0) | 2016.12.20 |
차트에서 포인트별 ToolTip 표시 (0) | 2015.01.07 |