为了账号安全,请及时绑定邮箱和手机立即绑定

如何通过单词获得文本的差异?

如何通过单词获得文本的差异?

海绵宝宝撒 2022-09-12 16:23:14
我想使用库 https://github.com/sergi/go-diffpackage mainimport (    "fmt"    "github.com/sergi/go-diff/diffmatchpatch")func main() {    dmp := diffmatchpatch.New()    text1 := "some text"    text2 := "other text"    diffs := dmp.DiffMain(text1, text2, true)    fmt.Println(diffs)}输出:[{Delete s} {Equal o} {Delete m} {Insert th} {Equal e} {Insert r} {Equal  text}]我不会:[{Delete some}  {Insert other} {Equal  text}]可能吗?附言:对不起我的英语。
查看完整描述

1 回答

?
郎朗坤

TA贡献1921条经验 获得超9个赞

检查这个


package main


import (

    "fmt"


    "github.com/sergi/go-diff/diffmatchpatch"

)


func main() {

    dmp := diffmatchpatch.New()

    text1 := "some text"

    text2 := "other text"


    diffs := dmp.DiffMain(text1, text2, true)

    fmt.Println(dmp.DiffCleanupSemantic(diffs))

}


查看完整回答
反对 回复 2022-09-12
  • 1 回答
  • 0 关注
  • 70 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信