To compare them, they have to do the same thing, you mentioned "text comparison", but the term is very generic, maybe you want to be editing distance: that is, what is the number minimum addition, removal, and editing operations that are required to exit from the first string to the second string.
That said, if that's your problem, and the algorithms you mentioned solve it. You can compare the algorithms like this: 1) for each pair of algorithms that gave the best answer (in case of a tie), check which one is more efficient, in time and memory; 2) in case of different answers, which gave less number of operations in response (remembering, it must be correct).
Time comparison can be done informally, as suggested by @Maicon Herverton, or more formally using asymptotic analysis.
Memory consumption is a direct result of the size of the data structures you are using in each algorithm.