- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
if ( text.Contains( "лет" ) || text.Contains( "год" ) )
{
var match = Regex.Match( text, @"\d+", RegexOptions.Singleline );
if ( !match.Success )
return null;
var date = DateTime.UtcNow;
return date.AddYears( -Int32.Parse( match.Value ) );
}
else if ( text.Contains( "дн" ) || text.Contains( "ден" ) )
{
var match = Regex.Match( text, @"\d+", RegexOptions.Singleline );
if ( !match.Success )
return null;
var date = DateTime.UtcNow;
return date.AddDays( -Int32.Parse( match.Value ) );
}
else if ( text.Contains( "месяц" ) )
{
var match = Regex.Match( text, @"\d+", RegexOptions.Singleline );
if ( !match.Success )
return null;
var date = DateTime.UtcNow;
return date.AddMonths( -Int32.Parse( match.Value ) );
}
else if ( text.Contains( "час" ) )
{
var match = Regex.Match( text, @"\d+", RegexOptions.Singleline );
if ( !match.Success )
return null;
var date = DateTime.UtcNow;
return date.AddHours( -Int32.Parse( match.Value ) );
}
else if ( text.Contains( "недел" ) )
{
var match = Regex.Match( text, @"\d+", RegexOptions.Singleline );
if ( !match.Success )
return null;
var date = DateTime.UtcNow;
return date.AddHours( ( -Int32.Parse( match.Value ) ) * 7 );
}
else if ( text.Contains( "минут" ) )
{
var match = Regex.Match( text, @"\d+", RegexOptions.Singleline );
if ( !match.Success )
return null;
var date = DateTime.UtcNow;
return date.AddMinutes( -Int32.Parse( match.Value ) );
}
return null;
Копипаста >_< До кучи ещё и с классической copy-paste ошибкой в логике.
Комментарии (0) RSS
Добавить комментарий