]> Creatis software - bbtk.git/blob - kernel/appli/bbSed/bbSed.cpp
Feature #1774
[bbtk.git] / kernel / appli / bbSed / bbSed.cpp
1 /*
2  # ---------------------------------------------------------------------
3  #
4  # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
5  #                        pour la SantÈ)
6  # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7  # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8  # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
9  #
10  #  This software is governed by the CeCILL-B license under French law and
11  #  abiding by the rules of distribution of free software. You can  use,
12  #  modify and/ or redistribute the software under the terms of the CeCILL-B
13  #  license as circulated by CEA, CNRS and INRIA at the following URL
14  #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
15  #  or in the file LICENSE.txt.
16  #
17  #  As a counterpart to the access to the source code and  rights to copy,
18  #  modify and redistribute granted by the license, users are provided only
19  #  with a limited warranty  and the software's author,  the holder of the
20  #  economic rights,  and the successive licensors  have only  limited
21  #  liability.
22  #
23  #  The fact that you are presently reading this means that you have had
24  #  knowledge of the CeCILL-B license and that you accept its terms.
25  # ------------------------------------------------------------------------ */
26
27
28
29 #include <stdio.h>
30 #include <stdio.h>
31 #include <iostream>
32 #include <fstream>
33 #include <sstream>
34 #include <vector>
35
36
37
38     void replace( std::string& str,
39                         const std::string& from, 
40                         const std::string& to )
41     {
42       using std::string;
43       string::size_type pos = str.find( from );
44       while ( pos != string::npos )
45       {
46         str.replace( pos, from.size(), to );
47         pos = str.find( from, pos+from.size()-1 );
48       } 
49     }
50
51
52
53
54 //==========================================================================
55 int main(int argc, char **argv)
56 {
57   
58   if (argc!=4) 
59     {
60       std::cerr << "usage : "<< argv[0] <<" fileIn  \"FindString\" \"ReplaceString\"" << std::endl;
61       return 1;
62     }
63
64   FILE *ffIn;
65   std::string fileIn;
66   std::string fileOut;
67   std::string findstring;
68   std::string replacestring;
69   std::string lineStr;
70   char strTmp[255];
71
72   fileIn        = argv[1];
73   findstring    = argv[2];
74   replacestring = argv[3];
75
76   ffIn =  fopen(fileIn.c_str(),"r");
77   if (ffIn){
78         while(!feof(ffIn)){
79             fgets( strTmp , 255, ffIn );
80             lineStr=strTmp;
81             if( feof(ffIn) && (lineStr.length()==1) ) { 
82             } else {
83               replace( lineStr,findstring, replacestring );
84               std::cout << lineStr;
85             }
86         }
87         fclose(ffIn);   
88   } else {
89       std::cerr << "ERROR. File : "<< argv[1] <<" Not exists." << std::endl;
90       return 1;
91   }
92
93
94   return 0;
95 }
96 //==========================================================================
97
98