本文整理汇总了C++中VString::str方法的典型用法代码示例。如果您正苦于以下问题:C++ VString::str方法的具体用法?C++ VString::str怎么用?C++ VString::str使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类VString
的用法示例。
在下文中一共展示了VString::str方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: gmttotime
int MTime::gmttotime(VString line){
// Friday, 31-Dec-99 23:59:59 GMT
line=PartLineOT(line, ",");
dspacev(line, 7);
if(line<22)
return 0;
day=line.str(0,2).toi();
year=line.str(7,4).toi();
hour=line.str(12,2).toi();
minute=line.str(15,2).toi();
sec=line.str(18,2).toi();
for(int i=0; i<12; i++)
if(cmp(mtmonths[i].data, line.data+3, 3)){
month=i+1;
break;
}
return mktime(year, month, day, hour, minute, sec, 1);
}
示例2: PartLineST
VString PartLineST(VString line, VString &two){ // one = "Text Part ONe" [Space || Tab] "Text Part Two" -> two
unsigned char *ln = line, *to =line.endu();
while(ln < to && (*ln != ' ' || *ln !='\t'))
ln ++;
if(ln == to){
two.Clean();
return line;
}
line = line.str(ln - line.data);
while(ln < to && (*ln == ' ' || *ln =='\t'))
ln ++;
two.setu(ln, to - ln);
return line;
}
示例3: TgBotCall
int TgBotCall(LightServerAccept &acc, VString head, VString post){
XDataCont ct(post);
XDataPEl message = ct("message");
XDataPEl chat = message("chat");
VString text = message["text"];
VString chat_id = chat["id"];
if(message && text){
text = Replace(text, "\\/", "/");
print("Message from: ", chat_id, ", text: ", text, "\r\n");
if(text[0] == '/')
TgBotCallCmd(chat_id, text.str(1));
else
return TgBotCallMsg(chat_id, text);
return 1;
}
return 0;
}