Jump to content

Recommended Posts

Posted
Hi.
 
I'm trying to compare 2 texts with eachother but im struggling a little.
 
I have 1 file for today ($array) and 1 file from yesterday ($filecontents), those should be compared to see whats being added today.
 
Todays file example:
12345
23456
34567
 

Yesterdays file example:
12345
23456
34567
45678
 
I tried something like this, it works but its ugly, besides, i only have to see whats being added.
 
$file = fileopen ("test.txt")
$filecontents = readfile ($file)
for $x = 1 to ubound($array) - 1
 if stringinstr($filecontents, $array[$x]) > 0 then
  stringreplace($filecontents, $array[$x], "")
 endif
next
 
this shows whats "left" after replacing the whole array with nothing... but there should be a better way to do this i guess?
 
Any thoughts?
Thanks
Posted

IIRC there are some threads on the forum about file comparison scripts.
Maybe you could grab some ideas/code from those?

My UDFs and Tutorials:

  Reveal hidden contents

 

Posted (edited)
  On 6/16/2016 at 6:16 PM, mikell said:

Its also purpose that addition may occur in the middle of the data... so this wouldnt work for that ;(

Edited by notsure

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...