Sorting Text in ROR

19 views
Skip to first unread message

Runa

unread,
Jun 10, 2011, 10:59:31 AM6/10/11
to Ruby on Rails: Talk
While sorting /ordering text it considers space first, then '.' then
characters

e.g. @user = User.find(:all,:order=>'name')

it outputs

A Sharma
A. Bansal ---------------with dot
Aarti Dev

Is there any way to sort, so that i get the output as
Aarti Dev
A. Bansal
A Sharma




Walter Davis

unread,
Jun 10, 2011, 12:13:02 PM6/10/11
to rubyonra...@googlegroups.com

http://www.ruby-doc.org/core/classes/Array.html#M000244

You want to either use the block form or define your own version of
<=> to use, stripping punctuation and downcasing the input for good
measure to create a "natural" sort.

Walter

>
>
> --
> You received this message because you are subscribed to the Google
> Groups "Ruby on Rails: Talk" group.
> To post to this group, send email to rubyonrails-
> ta...@googlegroups.com.
> To unsubscribe from this group, send email to rubyonrails-ta...@googlegroups.com
> .
> For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en
> .
>

Kendall Gifford

unread,
Jun 10, 2011, 6:49:21 PM6/10/11
to rubyonra...@googlegroups.com
On Friday, June 10, 2011 10:13:02 AM UTC-6, Walter Lee Davis wrote:

On Jun 10, 2011, at 10:59 AM, Runa wrote:

> While sorting /ordering text it considers space first, then '.' then
> characters
>
> e.g.   @user = User.find(:all,:order=>'name')
>
> it outputs
>
> A Sharma
> A. Bansal ---------------with dot
> Aarti Dev
>
> Is there any way to sort, so that i get the output as
> Aarti Dev
> A. Bansal
> A Sharma
>
>

http://www.ruby-doc.org/core/classes/Array.html#M000244

You want to either use the block form or define your own version of  
<=> to use, stripping punctuation and downcasing the input for good  
measure to create a "natural" sort.

Walter

Just beware that if you ever end up using a pagination gem (or rolling your own) such that you get a single "page" of results using limit and offset on your back-end database, this'll screw up any chance of your custom sorting working correctly. If you'll never be using LIMIT and OFFSET SQL clauses, then this works great!

Runa

unread,
Jun 11, 2011, 2:10:09 AM6/11/11
to Ruby on Rails: Talk
Thanks Walter and Kendall.

But ouput which I get using sort mentioned is as follows

>> a = [ "A Sharma", "A. Zah", "Aarti Jain", "A. Bansal", "Bindu Lakra" ]
=> ["A Sharma", "A. Zah", "Aarti Jain", "A. Bansal", "Bindu Lakra"]
>> a.sort {|x,y| y <=> x}
=> ["Bindu Lakra", "Aarti Jain", "A. Zah", "A. Bansal", "A Sharma"]

I want my sort to skip "." and spaces while sorting.

My intended output is
=> ["Aarti Jain", A. Bansal", "A Sharma","A. Zah", "Bindu Lakra" ]


Is there any way to get it sorted the way i wanted where . and space
is not considered while sorting?

Colin Law

unread,
Jun 11, 2011, 2:37:58 AM6/11/11
to rubyonra...@googlegroups.com
On 11 June 2011 07:10, Runa <roona...@gmail.com> wrote:
> Thanks Walter and Kendall.
>
> But ouput which I get using sort mentioned  is as follows
>
>>> a = [ "A Sharma", "A. Zah", "Aarti Jain", "A. Bansal", "Bindu Lakra" ]
> => ["A Sharma", "A. Zah", "Aarti Jain", "A. Bansal", "Bindu Lakra"]
>>> a.sort {|x,y| y <=> x}
> => ["Bindu Lakra", "Aarti Jain", "A. Zah", "A. Bansal", "A Sharma"]
>
> I want my sort to skip "." and spaces while sorting.
>
> My intended output is
> => ["Aarti Jain", A. Bansal", "A Sharma","A. Zah", "Bindu Lakra" ]

You have not shown us the code you have used to do the sort so how can
we tell what is wrong with it? Make sure you copy/paste it here
rather than re-type it so we can see exactly what you have done. Just
the code for the sorting please. First make sure you understand the
code you have used. Can you see why it does not do what you want?

Colin

pepe

unread,
Jun 30, 2011, 11:47:30 AM6/30/11
to Ruby on Rails: Talk
If I were you I would add a new column PLAIN_NAME or similar and I
would strip everything out everything you don't want in the name and
then sort by it. I think it would remove the complexity. You can
populate the new column with a before_save callback.
Reply all
Reply to author
Forward
0 new messages