Click here to Skip to main content
15,885,757 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
read c.txt
write only different values to 21.txt
its ok
but I cant read sentece it only read line :(
c.txt have senteces so I want to read word word to write 21.txt line line :).

C#
static void Main(string[] args)
        {
            string d = @"C:\C.txt";
            FileStream f = new FileStream(d,FileMode.Open);            
            StreamReader s = new StreamReader(f);

            string d2 = @"C:\21.txt";
            FileStream f2 = new FileStream(d2,FileMode.Create, FileAccess.Write);
            StreamWriter s2 = new StreamWriter(f2);


            ArrayList lst = new ArrayList();
            
            
            string line;
            while ((line = s.ReadLine()) != null)
            {                
                if(!lst.Contains(line)){
                lst.Add(line);
                }              
            }
            
            foreach(Object lstt in lst){
              
                //Console.WriteLine(lstt);
                s2.WriteLine(lstt);
            }


            s2.Flush();
            s2.Close();
            s.Close();
            Console.ReadLine();

        }
Posted
Updated 8-Nov-12 15:47pm
v2

1 solution

hi!
you can read all text from the file and split it to sentences using String.Split method. like this:
C#
foreach(string sentence in System.IO.File.ReadAllText(d).Split(new char[]{'.',',','!','?',';'})
            {
                if (!lst.Contains(sentence ))
                {
                    lst.Add(sentence );
                }
            }


[edit] code tags added[/edit]
 
Share this answer
 
v3
Comments
Member 9522119 9-Nov-12 7:08am    
thanks ;)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900