- elk update
- 모의투자
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user