klyn.regex.MatchResult.operator!=
method
public static operator!=(left as MatchResult, right as String) as Boolean:
DescriptionValue inequality with a string.
import klyn.regex
assert MatchResult("abc") != "xyz"
ReturnsTrue when the matched text differs from the given string. ``` import klyn.regex assert MatchResult("abc") != "xyz" ```