Jump to content

Sorting Arrays


StormTheGates

Recommended Posts

Hello everyone. I am aware of the sort() function, however its not doing what I want it to do. I have an array for cards, and need to sort them. For instance I have this array:

 

array("1s","4d","13h","7d","8c");

 

The problem is that when it sorts it sees 13 lower than 1. Or it notices the 1 before anything so I get a sort like this

 

13h

1s

4d

7d

8c

 

When I really need this

 

1s

4d

7d

8c

13h

 

Any ideas how this could be achieved? Thanks

Link to comment
Share on other sites

change it so its like this...

 

array("01s","04d","13h","07d","08c");

 

which would sort to...

01s

04d

07d

08c

13h

 

then in your function(s) just put

 

if($string{0}=="0") $string=substr($string,1);

or whatnot :-)

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.