[原创]HTML Diff,php版本,文本对比(标记出两个HTML的差异)
3. [代码][JavaScript]代码 跳至
/* * Compare str * @example var result = htmldiff.compare('str1','str2'); * * */ var htmldiff = { MODE_CHARACTER: 1,MODE_TAG: 2,MODE_WHITESPACE: 3, ACTION_EQUAL: 1,ACTION_DELETE: 2,ACTION_INSERT: 3,ACTION_NONE: 4,ACTION_REPLACE: 5, specialCaseOpeningTags: new Array('\\s]+', '\\s]+', '\\s]+', '\\s]+', '\\s]+', '\\s]+', '\\s]+', '\\s]+', '\\s]+', '\\s]+'), specialCaseClosingTags: new Array('', '', '', '', '', '', '', '', '', ''), content: '', wordIndices: '', oldWords: '',newWords: '', compare: function(str1, str2) { this.content = new Array(); this.wordIndices = new Array(); this.oldWords = this.ConvertHtmlToListOfWords(str1); this.newWords = this.ConvertHtmlToListOfWords(str2); this.wordIndices = this.IndexNewWords(this.newWords); var b = this.Operations(); for (var c = 0; c < b.length; c++) { var d = b[c]; this.PerformOperation(d); } return this.content.join(''); }, Operations: function() { var d = 0; var j = 0; var a = new Array(); var f = this.MatchingBlocks(); f.push(this.Match(this.oldWords.length, this.newWords.length, 0)); for (var i = 0; i < f.length; i++) { var g = f[i]; var b = (d == g.StartInOld); var h = (j == g.StartInNew); var c = this.ACTION_NONE; if (b == false && h == false) c = this.ACTION_REPLACE; else { if (b == true && h == false) c = this.ACTION_INSERT; else { if (b == false && h == true) c = this.ACTION_DELETE; else c = this.ACTION_NONE; } } if (c != this.ACTION_NONE) a.push(this.Operation(c, d, g.StartInOld, j, g.StartInNew)); if (g.length != 0) a.push(this.Operation(this.ACTION_EQUAL, g.StartInOld, g.EndInOld(), g.StartInNew, g.EndInNew())); d = g.EndInOld(); j = g.EndInNew(); } return a; }, MatchingBlocks: function() { var a = new Array(); this.FindMatchingBlocks(0, this.oldWords.length, 0, this.newWords.length, a); return a; }, FindMatchingBlocks: function(c, b, f, e, d) { var a = this.FindMatch(c, b, f, e); if (a != null) { if (c < a.StartInOld && f < a.StartInNew) this.FindMatchingBlocks(c, a.StartInOld, f, a.StartInNew, d); d.push(a); if (a.EndInOld() < b && a.EndInNew() < e) this.FindMatchingBlocks(a.EndInOld(), b, a.EndInNew(), e, d); } }, FindMatch: function(l, e, b, k) { var f = l; var m = b; var n = 0; var c = new Array(); for (var i = l; i < e; i++) { var d = new Array(); var h = this.oldWords[i]; if (!this.wordIndices[h]) { c = d; continue; } for (var g = 0; g < this.wordIndices[h].length; g++) { var a = this.wordIndices[h][g]; if (a < b) continue; if (a >= k) break; newMatchLength = (c[a - 1] ? c[a - 1] : 0) + 1; d[a] = newMatchLength; if (newMatchLength > n) { f = i - newMatchLength + 1; m = a - newMatchLength + 1; n = newMatchLength; } } c = d; } return n != 0 ? this.Match(f, m, n) : null; }, IndexNewWords: function(d) { var b = new Array(); for (var i = 0; i < d.length; i++) { var c = d[i]; if (b[c]) b[c].push(i); else b[c] = [i]; } return b; }, ConvertHtmlToListOfWords: function(b) { var f = this.MODE_CHARACTER; var e = ''; var d = new Array(); for (var i = 0; i < b.length; i++) { var c = b[i]; switch (f) { case this.MODE_CHARACTER: if (this.IsStartOfTag(c)) { if (e) d.push(e); e = '<'; f = this.MODE_TAG; } else { if (this.IsWhiteSpace(c)) { if (e) d.push(e); e = c; f = this.MODE_WHITESPACE; } else {console.log(e ); if (this.isNaW(e + c)) { if (e) d.push(e); e = c; } else e = e + c; } } break; case this.MODE_TAG: if (this.IsEndOfTag(c)) { e = e + '>'; d.push(e); e = ''; if (this.IsWhiteSpace(c)) f = this.MODE_WHITESPACE; else f = this.MODE_CHARACTER; } else e = e + c; break; case this.MODE_WHITESPACE: if (this.IsStartOfTag(c)) { if (e) d.push(e); e = '<'; f = this.MODE_TAG; } else { if (this.IsWhiteSpace(c)) e = e + c; else { if (e) d.push(e); e = c; f = this.MODE_CHARACTER; } } break; default: break; } } if (e) d.push(e); return d; }, PerformOperation: function(a) { switch (a.Action) { case this.ACTION_EQUAL: this.ProcessEqualOperation(a); break; case this.ACTION_DELETE: this.ProcessDeleteOperation(a, 'diffdel'); break; case this.ACTION_INSERT: this.ProcessInsertOperation(a, 'diffins'); break; case this.ACTION_NONE: break; case this.ACTION_REPLACE: this.ProcessReplaceOperation(a); break; default: break; } }, ProcessReplaceOperation: function(a) { this.ProcessDeleteOperation(a, 'diffmod'); this.ProcessInsertOperation(a, 'diffmod'); }, ProcessInsertOperation: function(b, a) { var c = this.array_slice(this.newWords, b.StartInNew, b.EndInNew); this.InsertTag('ins', a, c); }, ProcessDeleteOperation: function(b, a) { var c = this.array_slice(this.oldWords, b.StartInOld, b.EndInOld); this.InsertTag('del', a, c); }, ProcessEqualOperation: function(b) { var a = this.array_slice(this.newWords, b.StartInNew, b.EndInNew); this.content.push(a.join('')); }, preg_match_array: function(b, e) { var a = 0; for (var i = 0; i < b.length; i++) a |= (new RegExp(b[i])).test(e); return a; }, InsertTag: function(j, h, f) { while (true) { if (f.length == 0) break; var b = this.ExtractConsecutiveWords(f, false); var c = b.items; f = b.words; var a = ''; var e = false; if (c.length != 0) { var g = this.WrapText(c.join(''), j, h); this.content.push(g); } else { if ( !! this.preg_match_array(this.specialCaseOpeningTags, f[0])) { a = ''; if (j == 'del') f.shift(); } else { if (this.in_array(f[0], this.specialCaseClosingTags)) { a = ''; e = true; if (j == 'del') f.shift(); } } } if (f.length == 0 && a.length == 0) break; if (e) { var d = this.ExtractConsecutiveWords(f, true); f = d.words; this.content.push(a + d.items.join('')); } else { var d = this.ExtractConsecutiveWords(f, true); f = d.words; this.content.push(d.items.join('') + a); } } }, in_array: function(b, c) { for (var i = 0; i < c.length; i++) { if (c[i] == b) return true; } return false; }, WrapText: function(c, b, a) { return '<' + b + ' class="' + a + '">' + c + ''; }, ExtractConsecutiveWords: function(d, f) { var e = false; for (var b = 0; b < d.length; b++) { var c = d[b]; if (f ? !this.IsTag(c) : !!this.IsTag(c)) { e = b; break; } } if (e !== false) { var a = this.array_slice(d, 0, e); if (e > 0) d.splice(0, e); return {items: a,words: d}; } else { a = d; d = new Array(); return {items: a,words: d}; } }, IsTag: function(b) { var a = this.IsOpeningTag(b) || this.IsClosingTag(b); return a; }, IsOpeningTag: function(a) { return /^\s*]+>\s*$/.test(a); }, IsClosingTag: function(a) { return /^\s*]+>\s*$/.test(a); }, IsStartOfTag: function(a) { return a == "<"; }, IsEndOfTag: function(a) { return a == ">"; }, IsWhiteSpace: function(a) { return /\s/.test(a); }, isNaW: function(b) { return /[^\x00-\x80]/.test(b); }, array_slice: function(a, b, c, d) { return a.slice(b, c); }, Match: function(b, d, a) { var c = { StartInOld: b, StartInNew: d, Size: a }; c.EndInOld = function() { return b + a; }; c.EndInNew = function() { return d + a; }; return c; }, Operation: function(c, b, a, f, d) { var e = { Action: c, StartInOld: b, EndInOld: a, StartInNew: f, EndInNew: d }; return e; } };

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

As a PHP learner and developer, how can I not understand its history? The following PHP Chinese website will lead PHP enthusiasts to review the various historical versions of PHP.

Pagoda Panel is a powerful and easy-to-use server management panel that can help users easily manage websites, databases, FTP and other services. In the process of using the Pagoda Panel, sometimes you need to switch the PHP version to adapt to different website needs. This article will provide you with a simple guide for PHP version switching, and provide specific code examples to help readers quickly complete the PHP version switching operation. First, we need to log in to the Pagoda panel and enter the website settings page. Find the "Website" option in the left navigation bar and click

BTPanel is a powerful and easy-to-use server management panel that can help users easily manage servers, websites, databases and other services. As a website developer or administrator, it is very important to master the skills of switching PHP versions in the Pagoda panel. In this article, we will share how to operate and switch PHP versions in the Pagoda panel, and provide specific code examples to help readers better master this skill. 1. Log in to the Pagoda panel. First, enter the server IP address or domain name in the browser, and add the Pagoda

When developing a website or application using PHP, version upgrades are a necessary task because each version brings new features and fixes known issues. However, PHP version upgrades can also introduce new bugs because the new version may no longer support the functionality or syntax of the older version. In this article, we will introduce how to deal with errors caused by PHP version upgrade to ensure the normal operation of the application. 1. Back up the application and server. Before upgrading the PHP version, you must back up the application and server. The backup application can be

Eclipse is a widely used integrated development environment (IDE) that can be used to develop projects in various programming languages. When using Eclipse to develop PHP projects, it is sometimes necessary to update the PHP version to adapt to new features or fix bugs. This article will explain how to update the PHP version in Eclipse and provide specific code examples. 1. Preparations for updating the PHP version Before updating the PHP version, we need to ensure that Eclipse and the PHP development environment have been installed. in addition,

The meaning and importance of PHP version NTS PHP (Hypertext Preprocessor) is a widely used open source server-side scripting language that is used to develop dynamic web pages. PHP versions include NTS (Non-ThreadSafe) and TS (ThreadSafe). In this article, we will focus on the meaning and importance of NTS versions and provide some concrete code examples. The NTS version refers to the non-thread-safe version of PHP, which was originally designed to

New features of PHP7 version and their impact on mini program development. With the continuous development of technology, the Internet industry is also changing with each passing day. In recent years, mini programs have become a hot topic in mobile application development. At the same time, the release of PHP7 version has also become the focus of developers' attention. This article will explore the new features of the PHP7 version and analyze its impact on the development of small programs. 1. New features of PHP7 version As a major update of the PHP language, PHP7 version brings many new features and performance improvements. Here are a few important new features: Sex

Impact of PHP function version updates: Impact of new features: New features are introduced to facilitate the development of complex tasks. Fix the impact of the bug: Improve function behavior and improve code stability. Impact of behavior change: Most disruptive, requiring updates to code that uses the function. Best practices: Test updates in a test environment, check interactive code, and update affected dependencies.
