Ignore:
Timestamp:
Feb 11, 2008, 12:06:15 PM (16 years ago)
Author:
dai_9181
Message:

メンバ情報を保持するようにした

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/StrOperation.cpp

    r313 r387  
    5757    return 1;
    5858}
     59bool RemoveStringQuotes( std::string &str )
     60{
     61    if( str[0] != '\"' )
     62    {
     63        return false;
     64    }
     65
     66    str = str.substr( 1, str.length() - 2 );
     67    return true;
     68}
    5969void RemoveStringPare(char *str){
    6070    int i;
Note: See TracChangeset for help on using the changeset viewer.