我正在做一个单独的字符串,当看到delimilator时我添加了一种情况,对于最后一个delimilator来说效果很好。例如,我的字符串是"symbol control_line : std_logic:= '0' ; --example comment"当看到第一个delimilator时输出正确:但是当查看第二个==时输出失败。不知道为什么会这样?这两个代码对于所有delimilator都应该是正确的,但为什么只找出第一个,而第二个却失败?

此prepareNextToken函数确定第二个Token的tokenLength是什么。而且我可以使用此功能来获取当前令牌。

void Tokenizer::prepareNextToken()
{
        string real=*str;
        if(offset==real.size())
            complete=true;
        else
        {
            if(ifcomment==false)
            {
                size_t length=0;
                size_t index=offset;
                size_t smallest=find_first_delimilater(vhdl_char);
                while(index<real.size() )
                {
                    length++;
                    if(index==smallest && real[index+1]==' ')
                    {
                        cout<<real[smallest]<<" ";
                       break;
                    }
                    else if(index==smallest && real[index+1]!=' ')
                    {
                        length++;
                       break;
                    }
                    else if(index==real.find(' ',offset))
                    {
                        break;
                    }
                    else if(index==real.find("--",offset))
                    {
                        length++;
                       break;
                    }
                    index++;
                }
                tokenLength=length;
            }
            else if(ifcomment==true)
                tokenLength=real.size()-offset;
        }
        //cout<<tokenLength<<endl;
}


我的输出是

    signal            --which is correct
    control_line      --the current offset
    :                 --which is right because I reach the first case in my
                      --prepareNextToken and ":" is first delimilator
    std_logic:=       --that is the wrong output because it should be std_logic
                      -- and in a separate line comes out ";=" which is another
                      --delimilator, and is a multiple delimilator no empty case
                      -- so that means I go to the second cases
   --                 -- which is also right which go to fourth case
   sample comment    -- which is right


我的问题是,为什么当“:”出现在自己的行中,但是为什么“:=”出现时却以std_logic结尾呢?

最佳答案

substr的第二个参数是要提取的字符数,而不是结束位置(请参见http://www.cplusplus.com/reference/string/string/substr/)。
因此,您的提取线应为:

s=name.substr(offset,tokenLength);

07-24 13:31