This is good:

import string string.capwords("proper name") 'Proper Name'

This is not so good:

string.capwords("I.R.S") 'I.r.s'

Is there no string method to do capwords so that it accomodates acronyms?

link|improve this question

77% accept rate
I. R. S. is an abbreviation, not an acronym. Acronym's are (generally) pronounceable; and traditionally written without punctuation. – S.Lott Jan 26 '09 at 11:23
I believe you mean initialism, sir. Abbreviations are things like don't, can't, won't. Acronyms are things like VISA. Initialisms are things you can't pronounce. But we digress. – mlissner May 4 '10 at 21:21
feedback

4 Answers

up vote 4 down vote accepted

This might work:

import re

def _callback(match):
    """ This is a simple callback function for the regular expression which is 
        in charge of doing the actual capitalization. It is designed to only 
        capitalize words which aren't fully uppercased (like acronyms).
    """
    word = match.group(0)
    if word == word.upper():
        return word
    else:
        return word.capitalize()

def capwords(data):
    """ This function converts `data` into a capitalized version of itself. This 
        function accomidates acronyms.
    """
    return re.sub("[\w\'\-\_]+", _callback, data)

Here is a test:

print capwords("This is an IRS test.")    # Produces: "This Is An IRS Test."
print capwords("This is an I.R.S. test.") # Produces: "This Is An I.R.S. Test."
link|improve this answer
feedback

No, there is no such method in the standard library.

link|improve this answer
feedback

Even if there were such a function, what would it do when asked to process "IRS"? Even the IRS call themselves "IRS" with no dots.

link|improve this answer
But for my purposes, using periods/dots is a way of saying that I want each of the letters to be capitalized. – jamtoday Jan 26 '09 at 8:39
feedback

I just used a list comprehension: [ ".".join( [ string.capwords(l) for l in entry.split(".") ] ) for entry in original_list ]

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.