我使用的是Amibroker ver5.97
假设我有一个股票代码DAS。G和EFS.XF。我想删除点(包括点本身)之后的子字符串,以便输出分别成为DAS和EFS。
如何在AFL中做到这一点?
试试这个探索:
Substring = StrFind(Name(),".");
Length = StrLen(Name());
Position = Length - (Length-Substring) - 1;
if ( Substring )
{
Ticker=StrLeft( Name(), Position);
}
else
{
Ticker=Name();
}
Filter = 1;
AddTextColumn(Ticker,"Ticker");