Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re^2: Do you use format and write?

by jhourcle (Prior)
on Mar 10, 2005 at 16:20 UTC ( [id://438315]=note: print w/replies, xml ) Need Help??


in reply to Re: Do you use format and write?
in thread Do you use format and write?

I think those are two good points, but I think part of it is also just mindset of the programmers. Perl has a whole lot of functions that do similar things, as it borrows from many different languages. For instance, someone who's only dealt with perl might wonder why someone would ever do:

$string = join ( $replace, split ( $search, $string ) );

Which is roughly equivalent to:

$string =~ s/$search/$replace/g;

If you came from a language without regex matching, it makes perfect sense, though. You can use a person's choice of text output method to try to guess their background -- if you have almost all of the output coming from write, I'd assume that the programmer has a Fortran or similar background. if it's almost exclusively printf, then I'd assume they came from C. If it's all concatination without string interpolation, I'd assume something like JavaScript. I'm not going to be right every time, of course, but it seems that your thought processes about how to get things done is influenced by what tools to had available (or what tools you knew you had available, and you thought you knew how to use).

Personally, I did my time with Fortran, and I like the power of formats in it... but I don't think I've ever used write in perl. I'm more likely to use printf. One of these days, I'll actually get around to implementing a (s)printf that supports the LPC extensions like column mode, table mode, and arrays.

Oh -- and for 'nicely formatted' HTML, there's always preformatted text. After implementing it, the preformatted versions got more hits than the HTML table versions. (they even gave up on the table formatting ... too bad I never got preformatted promoted above the paragraph style)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://438315]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (3)
As of 2024-04-16 03:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found