RFC2732规范中URL中的文本IPv6地址的格式, 截取其中重要部分原文如下: RFC 2732 Format for Literal IPv6 Addresses in URL's December 1999 Abstract This document defines the format for literal IPv6 Addresses in URL's for implementation in World Wide Web browsers. This format has b
LoadRunner中截取字符串 /*strchr和strrchr的区别*/ char *strTest1="citms citms"; char *strTest2,*strTest3; strTest2=(char *)strchr(strTest1,'t'); //在strTest1中顺序查找字符t,当第一次碰到t的时候开始往后截取. lr_output_message("the first occurrence of t :%s ",strTest2); s