Apocryphal Apostrophes
Post from January 8, 2017 (↻ January 26, 2018), filed under Web Development and Art and Design.
For JavaScript, W3Schools (caution) says:
The backslash escape character turns special characters into string characters:
var x = 'It\'s alright';
Same for my darling Enki, noting:
str1 = 'I\'m a string.; str2 = "I'm a string.";
str1
andstr2
output the same string butstr2
is easier to read since it doesn’t require an escape character inI'm
.
For Python, Learn Python the Hard Way says:
[…]you escape double-quotes and single-quotes so Python knows to include in the string. Here’s an example:"I am 6'2" tall." # escape double-quote inside string 'I am 6\'2" tall.' # escape single-quote inside string
For Oracle PL/SQL, Tech on the Net says:
When the apostrophe/single quote is in the middle of the string, you need to enter [two] single quotes for Oracle to display a quote symbol. For example:
SELECT 'He''s always the first to arrive'
(This could go on.)
The examples aren’t perfect, the sources, neither, but what’s wrong in this picture?
What’s wrong is what typographers preach for ages: Use real apostrophes.
(On macOS with US keyboard layout you should be able to type a apostrophe through option + shift + ]. On Windows, use something like alt + 0146.)
Yes, we’ll still need to escape characters—perhaps the examples simply aren’t great—and tutorials to say how to. But through proper punctuation do not only our designs benefit but does also our code get a little simpler.
See the 2009 punctuation cheat sheet for more characters and locales.
About the Author
Jens Oliver Meiert is an author and developer (O’Reilly, W3C, ex-Google). He plays with philosophy, art, and adventure. Here on meiert.com he shares and generalizes and exaggerates some of his thoughts and experiences. (Beware: More often than he wants it he’s wrong.)
There’s more Jens in the archives and at Goodreads. If you have any questions or concerns (or recommendations) about what he writes, leave a comment or a message.
Read More
Have a look at the most popular posts, possibly including:
Looking for a way to comment? Comments have been disabled, unfortunately.