真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

C函數(shù)如何仿寫JAVA::String操作

這篇文章將為大家詳細講解有關C函數(shù)如何仿寫JAVA::String操作,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

創(chuàng)新互聯(lián)是一家集網(wǎng)站建設,大竹企業(yè)網(wǎng)站建設,大竹品牌網(wǎng)站建設,網(wǎng)站定制,大竹網(wǎng)站建設報價,網(wǎng)絡營銷,網(wǎng)絡優(yōu)化,大竹網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強企業(yè)競爭力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時我們時刻保持專業(yè)、時尚、前沿,時刻以成就客戶成長自我,堅持不斷學習、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實用型網(wǎng)站。

模擬JAVA String 函數(shù)處理

HLUtil.h

/**
* Ext-C Java::String.
* replaceFirst Str1 string will replace the first occurrence of the string str2 into str3.
*/
static void replaceFirst(char *str1,char *str2,char *str3);
/**
* Ext-C Java::String.
* Will appear in all str2 str1 are replaced str3.
*/
        static void replace(char *str1,char *str2,char *str3);
/**
* Ext-C Java::String.
* Src string interception, labeled start from the beginning to the end-1 (end front) of the string stored in dest (index starts at 0). 
*/
static void substring(char *dest,char *src,int start,int end);
/**
* Ext-C Java::String.
* Return the src subscript index character.
*/
static char charAt(char *src,int index);
/**
* Ext-C Java::String.
* Return the position of the first occurrence of str2 (The following table index) in str1, there is no return -1.
*/
static int indexOf(char *str1,char *str2);
/**
* Ext-C Java::String.
* Location (subscript) returns the last occurrence of str1 str2, there is no return -1.
*/
static int lastIndexOf(char *str1,char *str2);
/**
* Ext-C Java::String.
* Remove the first non-blank character in front of the left str whitespace characters (spaces and horizontal tabs).
*/
static void ltrim(char *str);
/**
* Ext-C Java::String.
* Delete str last non-blank character behind all whitespace characters (spaces and horizontal tabs).
*/
static void rtrim(char *str);
/**
* Ext-C Java::String.
* Whitespace characters to delete str ends.
*/
static void trim(char *str);
HLUtil.cpp:
void HLUtil:: replaceFirst(char *str1,char *str2,char *str3)
{
int length = strlen(str1)+1;
if(length>1)
{
char *str4 =newchar[length];
char *p;  
strcpy(str4,str1);  
if((p=strstr(str1,str2))!=NULL)
{  
while(str1!=p&&str1!=NULL)
{  
str1++;  
}  
str1[0]='\0'; 
strcat(str1,str3);
strcat(str1,strstr(str4,str2)+strlen(str2));
}
delete str4;
str4 = NULL;
}
}
void HLUtil:: replace(char *str1,char *str2,char *str3)
{
while(strstr(str1,str2)!=NULL)  
{  
replaceFirst(str1,str2,str3);  
}
}
void HLUtil:: substring(char *dest,char *src,int start,int end)
{
int i=start;  
if(start>strlen(src))return;  
if(end>strlen(src))  
end=strlen(src);  
while(istrlen(src))  
return 0;  
while(i=0)  
{  
if(p[i]!=32&&p[i]!=9)break;  
i--;  
}  
str[++i]='\0';
}
void HLUtil:: trim(char *str)
{
ltrim(str);  
rtrim(str);
}

關于“C函數(shù)如何仿寫JAVA::String操作”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。


當前名稱:C函數(shù)如何仿寫JAVA::String操作
網(wǎng)站網(wǎng)址:http://weahome.cn/article/jesoco.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部