- elk update

- 모의투자
This commit is contained in:
2018-06-07 15:35:31 +09:00
parent 1712ac7b9b
commit d074af571a
10 changed files with 228 additions and 60 deletions

View File

@@ -245,5 +245,30 @@ namespace NewsCrawler
Regex result = m_Duplicated.Find(s => s.IsMatch(strText));
return (result != null);
}
public List<string> GetAllPositive()
{
return m_Positive.Select(a => a.ToString()).ToList();
}
public List<string> GetAllPositiveForce()
{
return m_PositiveForce.Select(a => a.ToString()).ToList();
}
public List<string> GetAllNegative()
{
return m_Negative.Select(a => a.ToString()).ToList();
}
public List<string> GetAllManual()
{
return m_Manual.Select(a => a.ToString()).ToList();
}
public List<string> GetAllDuplicated()
{
return m_Duplicated.Select(a => a.ToString()).ToList();
}
}
}