views:

131

answers:

2

I want to write a function like equalp, which gives #t for (equalp "Xy" "xY").

+7  A: 

Use (string-ci=? "Xy" "xY")

Reference

Simon
+1  A: 

Note also that PLT has string-locale-ci=?, which can deal with other locales.

Eli Barzilay