Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
9answers
5k views

How do I convert CamelCase into human-readable names in Java?

I'd like to write a method that converts CamelCase into a human-readable name. Here's the test case: public void testSplitCamelCase() { assertEquals("lowercase", splitCamelCase("lowercase")); ...
8
votes
6answers
3k views

How to capitalize the first character of each word, or the first character of a whole string, with C#?

I could write my own algorithm to do it, but I feel there should be the equivalent to ruby's humanize in C#. I googled it but only found ways to humanize dates. Examples: A way to turn "Lorem ...
3
votes
2answers
459 views

From: “1 hour ago”, To: timedelta + accuracy

Is there a function to 'reverse humanize' times? For example, given (strings): '1 minute ago' '7 hours ago' '5 days ago' '2 months ago' Could return (apologies for the pseudo-code): ...
1
vote
2answers
227 views

How to display “x days ago” type time using Humanize in Django template?

When I do this: {% load humanize %} {{ video.pub_date|naturaltime|capfirst }} I get 2 days, 19 hours ago How can I get just 2 days without the hours. Basically if the video was published in less ...
1
vote
2answers
760 views

How do I set human readable attribute names in a rails model?

This seems like a really simple question -- when I'm using form_for or fields_for helpers to generate markup from my models, how can I modify my model to customize the string that appears for a ...
0
votes
2answers
424 views

Forcing “humanized” names of fields to be lowercase in Rails 3

As far as I know, the accepted way to set the "humanized" names of fields in Rails 3 is to use locales: # config/locales/en.yml en: activerecord: attributes: member: username: ...
0
votes
1answer
460 views

django ifequal naturalday

I'm not sure why, but this condition will never evaluate True for me. I'm feeding it datetime.today() in the urls file. Am I missing something? Template: {% load humanize %} {{ ...