StringEditDistance

Companion:
class
class Object
trait Matchable
class Any

Type members

Inherited classlikes

case class StringDelimiter(separator: String)

Create separator characters

Create separator characters

Inherited from:
StringEditDistance

Value members

Inherited methods

def editDistance(s1: String, s2: String): Int
Inherited from:
StringEditDistance
def foldSplittedStrings[T](s1: String, s2: String, init: T, f: (T, String, String) => T): T

apply edit distance functions on strings split on newlines so that there are no memory issues

apply edit distance functions on strings split on newlines so that there are no memory issues

Inherited from:
StringEditDistance
def shorten(s: String, firstSep: String, secondSep: String, size: Int): String
Inherited from:
DiffShortener
def showDiffs(operations: IndexedSeq[EditDistanceOperation[Char]], sep: String, shortenSize: Int): String
Inherited from:
StringEditDistance
def showDistance(s1: String, s2: String, sep: String, shortenSize: Int): (String, String)
Value parameters:
sep

separators used to highlight differences. If sep is empty, then no separator is used. If sep contains one character, it is taken as the unique separator. If sep contains 2 or more characters, the first half of the characters are taken as opening separator and the second half as closing separator.

Returns:

a (String, String) displaying the differences between each input strings. The used separators are specified by the caller. The string is shortened before and after differences if necessary.

Inherited from:
StringEditDistance