I would like to compare two sentences (sentences A and B), such that the program would output the changes made on sentence B from sentence A. For example:
sentence A: It's a lovely day today.
sentence B: It's a very lovely day today, isnt it?
Output: It's a [I:very] lovely day today [C:./,] [I:isnt it?]
where:
I
= INSERTED,
C
= CHANGED
PS: I havent started coding yet since I want to gather some of your ideas on how to best implement this case.