Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
I wanto sort @list. But without using any Date Sort modules. But we I can use perl's sort function.

I find this mostly annoying. Every now and again someone pops up and asks "how can I do XYZ without using any module?" In most cases this is plainly stupid - check e.g. this quotation, and is being asked because the person who asks does not have root privileges and ignores that modules can be installed locally too. See for example this section of the Tutorials.

In this case your post may suggest you're asking about homework instead, which is also advised against here. Personally I don't find anything wrong with it, provided that you clearly state so and you show what you've tried, so that we do not give ready-made solutions, which most of us won't do in any case -because we're not a helpdesk- and help you to learn instead.

Please don't use split also.

This also smells too much like homework, which I don't like. Indeed, if you have your numbers e.g. in a "MM-DD-YYYY" format as some of your post seem to imply, then it is quite natural to get individual chunks to sort upon like thus:

my ($m, $d, $y) = split /-/;

you don't like it? Then

my ($m, $d, $y) = /\d+/g;

will work just the same if you trust the format of your dates. Now, is this acceptable for your teacher?


In reply to [OT] "please don't" [was: "Re: Sorting The Date format..."] by blazar
in thread Sorting The Date format Values without using any perl modules. by jesuashok

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (6)
As of 2024-04-19 12:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found