Looking for synonyms database

deki33

Elite Member
Jr. VIP
Joined
Oct 9, 2009
Messages
6,327
Reaction score
931
Hi,

I'm looking for synonyms database to use in wpunique.
It's in this format:

acquire,buy
acquired,bought
acquires,buys
almost,nearly
amazing,incredible
brand new,groundbreaking new
anger,rage


Does anybody know where to find it ?
 
Maybe this will work for you (not sure of the list format offhand):

HTML:
http://www.gutenberg.org/ebooks/3202

Click on the 'download' tab on the page.
 
Maybe this will work for you (not sure of the list format offhand):

HTML:
http://www.gutenberg.org/ebooks/3202
Click on the 'download' tab on the page.

Thanks, but it's not synonyms database.

From
Code:
Hello man how are you today. It's a nice day.
It made
Code:
Accost Achilles how are I as of now. I's a Christian All-comprehending Date DMZ.
 
If you can code in MS VBA and you have MS Word, it has it's own Synonyms engine that you can write to. The Bad Article Rewrite website does something similar.
 
Code:
[FONT=Arial][COLOR=Pink][SIZE=2]Public Sub Syno()
Dim MSWord As Object, oSynInfo As Object
Dim vSynList As Variant
Dim strWord As String
Set MSWord = CreateObject("Word.Application")
strWord = ActiveCell.Value
Set oSynInfo = MSWord.SynonymInfo(strWord)
If oSynInfo.Found = True Then
    For i1 = 1 To oSynInfo.MeaningCount
        vSynList = oSynInfo.SynonymList(i1)
        For i2 = 1 To UBound(vSynList)
            Debug.Print vSynList(i2)
        Next i2
    Next i1
End If
Set oSynInfo = Nothing
Set MSWord = Nothing
End Sub[/SIZE][/COLOR][/FONT]

This is a sample for MS Excel. The important part here is the Set oSynInfo = MSWord.SynonymInfo(strWord) part.
 
Hello there,

I have one request for you - DO NOT SELL/RESELL this share of mine.

Here is a good DB of phrase synonims:
Code:
http://www.mediafire.com/?1vjgz4t8ea58exa

Hope it helps,
Mr.Profit
 
Hello there,

I have one request for you - DO NOT SELL/RESELL this share of mine.

Here is a good DB of phrase synonims:
Code:
http://www.mediafire.com/?1vjgz4t8ea58exa
Hope it helps,
Mr.Profit

:congrats::congrats::congrats:
 
Back
Top