مدیاویکی:Gadget-Extra-Editbuttons-RegexTest.js

از ویکی‌پدیا، دانشنامهٔ آزاد

نکته: برای دیدن تغییرات، ممکن است نیاز باشد که حافظهٔ نهانی مرورگر خود را پس از انتشار پاک‌سازی کنید. گوگل کروم، فایرفاکس، مایکروسافت اج و سافاری: کلید Shift را نگه دارید و روی دکمهٔ Reload در نوار ابزار مرورگر کلیک کنید. برای آگاهی از جزئیات و نحوهٔ پاک‌سازی حافظهٔ نهانی سایر مرورگرها، صفحهٔ ویکی‌پدیا:میانگیر مرورگرتان را خالی کنید را ببینید.

mw.loader.load( '//fa.wikipedia.org/wiki/%D9%85%D8%AF%DB%8C%D8%A7%D9%88%DB%8C%DA%A9%DB%8C:Gadget-Extra-Editbuttons-dictionary.js&action=raw&ctype=text/javascript' )
var dictionary=persianToolsDictionary
var dictionary=dictionary.complexes
var my_list=[]
var wrong_list=[]
for (i in dictionary) {
	if (dictionary.hasOwnProperty(i)) {
		var firstPart=i.split('|')
		var secondPart=dictionary[i].split('|')
		for (y in firstPart){
			for (x in secondPart){
				var new_word=firstPart[y].replace('(','').replace(')','')+'-'+secondPart[x].replace('(','').replace(')','')
				if (my_list.indexOf(new_word) != -1){
					wrong_list.push(new_word)
					//alert('yes > ' + new_word)
				}else{
					my_list.push(new_word)
					//alert(new_word)

				}
			}
		}
	}
}
alert(wrong_list)