문제

I need to highlight the differences between two simple strings with python, enclosing the differing substrings in a HTML span attribute. So I'm looking for a simple way to implement the function illustrated by the following example:

hightlight_diff('Hello world','HeXXo world','red')

...it should return the string:

'He<span style="color:red">XX</span>o world'

I have googled and seen difflib mentioned, but it's supposed to be obsolete and I haven't found any good simple demo.

도움이 되었습니까?

해결책

Everything that you need comes out of difflib -- for example:

>>> import difflib
>>> d = difflib.Differ()
>>> l = list(d.compare("hello", "heXXo"))
>>> l
['  h', '  e', '- l', '- l', '+ X', '+ X', '  o']

Each element in that list is a character from your two input strings, prefixed with one of

  • " " (2 spaces), character present at that position in both strings
  • "- " (dash space), character present at that position in the first string
  • "+ " (plus space), character present at that position in the second string.

Iterate through that list and you can build exactly the output you're looking to create.

There's no mention of difflib being in any way obsolete or deprecated in the docs.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top