|
|
|
#1 |
|
Messages: n/a
Hébergeur: |
Hi,
could you tell me how to compare 2 files (if a block of the first file contains the second file). for example. file 1: <body> ----- ----- ----- <script> AAAA </script> <script> xxxxx yyyyy </script> </body> file 2: </script> <script> xxxxx yyyyy </script> I need to verify if the content of the 2nd file is present on the first file I hope you can me with this -- Posted via http://www.ruby-forum.com/. |
|
|
|
#2 |
|
Messages: n/a
Hébergeur: |
Olita Olita wrote:
> Hi, > could you tell me how to compare 2 files (if a block of the first file > contains the second file). You can load the two files in two strings str1 = IO.read("file1") str2 = IO.read("file2") and now search if str2 is contained in str1 ... if str1.include? str2 tiziano -- Posted via http://www.ruby-forum.com/. |
|
|
|
#3 |
|
Messages: n/a
Hébergeur: |
Tiziano Merzi wrote:
> Olita Olita wrote: >> Hi, >> could you tell me how to compare 2 files (if a block of the first file >> contains the second file). > > You can load the two files in two strings > > str1 = IO.read("file1") > str2 = IO.read("file2") > > and now search if str2 is contained in str1 > > ... if str1.include? str2 > > tiziano thank you ... it's working now ![]() Olita -- Posted via http://www.ruby-forum.com/. |
|
![]() |
| Outils de la discussion | |
|
|