Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 159425
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T10:51:25+00:00 2026-05-11T10:51:25+00:00

Every once in a while I want to replace all instances of values like:

  • 0

Every once in a while I want to replace all instances of values like:

<BarFoo> 

with

<barfoo> 

i.e. do a regular expression replace of all things inside angle brackets with its lowercase equivalent.

Anyone got a nice snippet of Lisp that does this? It’s safe to assume that we’re dealing with just ASCII values. Bonus points for anything that is generic enough to take a full regular expression, and doesn’t just handle the angle brackets example. Even more bonus points to an answer which just uses M-x query-replace-regexp.

Thanks,

Dom

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T10:51:25+00:00Added an answer on May 11, 2026 at 10:51 am

    Try M-x query-replace-regexp with '<\([^>]+\)>' as the search string and '<\,(downcase \1)>' as the replacement.

    This should work for Emacs 22 and later, see this Steve Yegge blog post for more details on how Lisp expressions can be used in the replacement string.

    For earlier versions of Emacs you could try something like this:

    (defun tags-to-lower-case ()   (interactive)   (save-excursion     (goto-char (point-min))     (while (re-search-forward '<[^>]+>' nil t)       (replace-match (downcase (match-string 0)) t)))) 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Every once and a while I have a scenario like this, and can never
Every once and a while I get this error in IE when making an
Im using Visual studio 2008. Every once in a while files that exist in
In this very simple code example, messages get lost every once in a while.
Suppose I want to run the following method foo() once every hour in Grails:
I have a PHP script running as a daemon. Every once in a while,
This happens to me every once in a while and I always end up
We are using axis for webservice communication between different system in house. Every once
I have a web scraping script that gets new data once every minute, but
My team has a situation where an SNMP SET will fail once every two

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.