What is a semordnilap?

User avatar
ChrisGreaves
PlutoniumLounger
Posts: 15587
Joined: 24 Jan 2010, 23:23
Location: brings.slot.perky

What is a semordnilap?

Post by ChrisGreaves »

Spoiler
The word “semordnilap” is “palindromes” spelt palindromically
Thus:-
Spoiler
animal
deliver
looter
disaper
drawer
straw
Spoiler
For those of you who like a little bit of VBA code:

Code: Select all

Function semordnilap(ByVal strWord As String) As String
    Dim strNewWord As String
    While Len(strWord) > 0
        strNewWord = strNewWord & Right(strWord, 1)
        strWord = Left(strWord, Len(strWord) - 1)
    Wend
    semordnilap = strNewWord
'Sub TESTSemordnilap()
'    MsgBox Semordnilap("Semordnilap")
'End Sub
'Sub TESTSemordnilap()
'    Debug.Assert Application.CheckSpelling(Semordnilap("animal"))
'    Debug.Assert Application.CheckSpelling(Semordnilap("deliver"))
'    Debug.Assert Application.CheckSpelling(Semordnilap("looter"))
'    Debug.Assert Application.CheckSpelling(Semordnilap("diaper"))
'    Debug.Assert Application.CheckSpelling(Semordnilap("drawer"))
'    Debug.Assert Application.CheckSpelling(Semordnilap("straw"))
'End Sub
End Function
There's nothing heavier than an empty water bottle

User avatar
John Gray
PlatinumLounger
Posts: 5406
Joined: 24 Jan 2010, 08:33
Location: A cathedral city in England

Re: What is a semordnilap?

Post by John Gray »

Those aren't palindromes - they are simply word letter-reversals.

palindrome
noun
A word, phrase, or sequence that reads the same backwards as forwards, e.g. madam or nurses run.
[my italics]

You should read all of these as a penance!
And add ailihphilia - the love of palindromes.
Last edited by John Gray on 29 Oct 2014, 16:01, edited 1 time in total.
John Gray

"(or one of the team)" - how your appointment letter indicates you won't be seeing the Consultant...

User avatar
ChrisGreaves
PlutoniumLounger
Posts: 15587
Joined: 24 Jan 2010, 23:23
Location: brings.slot.perky

Re: What is a semordnilap?

Post by ChrisGreaves »

John Gray wrote:Those aren't palindromes - they are simply word letter-reversals.
Oh! :sad:
Thanks John. :sad: :sad:
That's a bit of a reversal. :sad: :sad: :sad:
There's nothing heavier than an empty water bottle

User avatar
PaulB
BronzeLounger
Posts: 1598
Joined: 26 Jan 2010, 20:28
Location: Ottawa ON

Re: What is a semordnilap?

Post by PaulB »

disaper?? repasid??
Regards,
Paul

The pessimist complains about the wind. The optimist expects it to change. The realist adjusts his sails.

User avatar
BobH
UraniumLounger
Posts: 9266
Joined: 13 Feb 2010, 01:27
Location: Deep in the Heart of Texas

Re: What is a semordnilap?

Post by BobH »

Madam I'm Adam

or in Spanish

Nada, yo soy Adan!
Bob's yer Uncle
(1/2)(1+√5)
Dell Intel Core i5 Laptop, 3570K,1.60 GHz, 8 GB RAM, Windows 11 64-bit, LibreOffice,and other bits and bobs