2009-12-21, 09:30 PM
(This post was last modified: 2009-12-22, 12:26 AM by Bit 'n Bang.)
These MyCodes will look up the specified word on Dictionary.com/Thesaurus.com.
Dictionary:
Title:
Short Description:
Regular Expression:
Replacement:
What it will come out as:
Input:
[dict]test[/dict]
Output:
test
Thesaurus:
Title:
Short Description:
Regular Expression:
Replacement:
What it will come out as:
Input:
[thes]test[/thes]
Output:
test
Dictionary:
Title:
Dictionary
Short Description:
This will put a link to dictionary.com, searching the word you enter.
Regular Expression:
\[dict\](.*?)\[/dict\]
Replacement:
<a href="http://dictionary.reference.com/browse/$1">$1</a>
What it will come out as:
Input:
[dict]test[/dict]
Output:
test
Thesaurus:
Title:
Thesaurus
Short Description:
This will put a link to thesaurus.com, searching the word you enter.
Regular Expression:
\[thes\](.*?)\[/thes\]
Replacement:
<a href="http://thesaurus.reference.com/browse/$1">$1</a>
What it will come out as:
Input:
[thes]test[/thes]
Output:
test