讀取檔案 刪除注釋的C 程式

2021-09-19 13:20:06 字數 623 閱讀 7790

我有朋友向我求助寫乙個讀取檔案然後刪掉注釋的程式,也順便練練手。

內容是在content裡面。

下面的只是讀到了content然後顯示,沒有改動原來檔案的內容。

#include#include#include#include #include #include #include using namespace std;

int main()

cout

int i=0;

while(i}// delete /**/ type notation

else if(contents[i]=='/'&&contents[i+1]=='*')

for(int j=startindex;j<=i+1;j++) contents[j]=' ';

}// just move forward

else i++;

}

for(int index=0;indexcout

}

C語言原始檔注釋刪除

寫這個東西,主要是為了進行 比較。因為在進行比較時,經常會比較出非常多的注釋的不同,又沒有實際意義。非常讓人頭疼。下面是 void nvdodelcomment file in,file out else if first comment line ists 1 iflag else if seco...

C 讀取TXT檔案程式

c 讀取txt檔案程式 2008 06 11 09 56 首先看我的截圖 總結 1 niit.txt 預設在 file read bin debug 檔案下 如果你不想程式執行報錯,那麼就在這個檔案下 建立1 因為這裡我們是讀取文字,所以niit.txt,內容自己寫一下!注意兩點 1.1 檔案最好不...

批量刪除C 注釋

批量刪除c 注釋 適用於vs開發環境 方法 第一步 使用ctrl h快捷鍵,開啟查詢替換視窗 第二步 在 查詢選項 中,勾選 使用 正規表示式 第三步 在 查詢內容 中,填寫正規表示式 t n n 第四步 替換為 留空 第五步 單擊 全部替換 按鈕,完成整個專案或者當前文件等替換 舉例 替換前 類注...