lcs_seq_editops.Rd
Calculates the edit operations required to transform one string into another.
lcs_seq_editops(s1, s2)
The first string.
The second string.
A data.frame containing the edit operations (substitutions, insertions, and deletions).
lcs_seq_editops("kitten", "sitting") #> operation source_position destination_position #> 1 insert 0 0 #> 2 delete 0 1 #> 3 insert 4 4 #> 4 delete 4 5 #> 5 insert 6 6