Has anyone else ever noticed how a lot of regular expressions look like cursing and swearing as it's represented in PG rated comic strips?

One I recently wrote to clear off the query string and hash from a URL:

Code:
basehref = location.href.replace(/#|\?.*$/g, '');
Looks like cursing to me.