Direct experience of text manipulation in Perl/TCL?

Ask a Question related to PERL Miscellaneous, Design and Development.

  1. #1

    Default Direct experience of text manipulation in Perl/TCL?

    As a little project, I'm trying to investigate the differences between
    TCL and Perl(something never before attempted), especially in terms of
    their text manipulation capabilities.

    Having used a lot more Perl, I was previously under the impression
    that Perl was a lot better for text manipulation, but looking at the
    commands available, it seems that TCL actually has more core
    functionality. Since this discovery, however, Ive been told that
    Perl's text manipulation is much easier to use than TCL's.

    Does anyone have any direct experience with any "heavy-duty" text
    manipulation in either Perl or TCL? I would be interested to hear
    some opinions on how easy each is, and maybe hear from some people who
    have used both and can give me a direct comparison...

    Thanks-
    -Selwyn
    Selwyn Leeke Guest

  2. Similar Questions and Discussions

    1. MS SQL server and SQL DATETIME manipulation in perl
      Hi all, I am going to be doing a lot of work with Microsoft SQL Server 2000 using perl and the Win32::ODBC module. Most of this will revolve...
    2. date time manipulation perl
      siddhartha mulpuru wrote: Do not multi-post!! http://www.uwasa.fi/~ts/http/crospost.html I've seen the same question in comp.lang.perl.misc...
    3. perl date manipulation
      Hi, I need to generate all the dates between a range of dates eg.. I need all the dates between date A say 1/1/2004 and date B say 3/3/2004. Can...
    4. cron manipulation and perl-cgi
      Hi, I am trying to develop a webpage with login,password and Unix box name as input fields which will post to a perl script that would do the...
    5. Alpha channel direct manipulation
      Hi, I've this problem: I want separate layer mask and RGB pixels. When I create mask from the image, using Ctrl-clicked selection (= selection...
  3. #2

    Default Re: Direct experience of text manipulation in Perl/TCL?

    Selwyn Leeke (selwyn.leeke@camcon.co.uk) wrote on MMMDCLXIII September
    MCMXCIII in <URL:news:f6ba12d3.0309110513.ae61ea9@posting.goog le.com>:
    ;; As a little project, I'm trying to investigate the differences between
    ;; TCL and Perl(something never before attempted), especially in terms of
    ;; their text manipulation capabilities.

    You too? Is it "Perl vs TCL" week?

    ;; Having used a lot more Perl, I was previously under the impression
    ;; that Perl was a lot better for text manipulation, but looking at the
    ;; commands available, it seems that TCL actually has more core
    ;; functionality. Since this discovery, however, Ive been told that
    ;; Perl's text manipulation is much easier to use than TCL's.

    TCL is far easier to use. TCL is faster, and has much more core
    functionality. I wouldn't even bother learning Perl, it's a dying
    language. Just look how slow the progress of perl6 is! 3 years
    have passed, and Larry still hasn't figured out how perl6 is going
    to look like, let alone it will ever be implemented. Besides, no
    serious OS vendor would supply a write-only language like Perl
    with its OS, they all prefer TCL. Furthermore, TCL programmers are
    in much higher demand than Perl programmers; even Cobol programmers
    are more wanted than Perl programmers.

    ;; Does anyone have any direct experience with any "heavy-duty" text
    ;; manipulation in either Perl or TCL? I would be interested to hear
    ;; some opinions on how easy each is, and maybe hear from some people who
    ;; have used both and can give me a direct comparison...

    Processing text in Perl is a pain. It lacks decent parsing tools
    (yeah, there's perl6 vaporware...), all it has is a slightly beefed
    up sed. Man, I could tell you about the times I couldn't do something
    simple in Perl, and had to use a gazillion badly documented, buggy
    modules to get it done.



    Abigail
    --
    perl -Mstrict -we '$_ = "goto U.print chop;\n=rekcaH lreP rehtona tsuJ";U1:eval'
    Abigail Guest

  4. #3

    Default Re: Direct experience of text manipulation in Perl/TCL?

    On 11 Sep 2003 06:13:36 -0700
    [email]selwyn.leeke@camcon.co.uk[/email] (Selwyn Leeke) wrote:
    > As a little project, I'm trying to investigate the differences
    > between TCL and Perl(something never before attempted), especially
    > in terms of their text manipulation capabilities.
    >
    > Having used a lot more Perl, I was previously under the impression
    > that Perl was a lot better for text manipulation, but looking at the
    > commands available, it seems that TCL actually has more core
    > functionality. Since this discovery, however, Ive been told that
    > Perl's text manipulation is much easier to use than TCL's.
    >
    > Does anyone have any direct experience with any "heavy-duty" text
    > manipulation in either Perl or TCL? I would be interested to hear
    > some opinions on how easy each is, and maybe hear from some people
    > who have used both and can give me a direct comparison...
    There's a thread already started this week (Perl vs TCL) - see my
    comments.

    HTH

    --
    Jim

    Copyright notice: all code written by the author in this post is
    released under the GPL. [url]http://www.gnu.org/licenses/gpl.txt[/url]
    for more information.

    a fortune quote ...
    Veni, Vidi, Visa.

    James Willmore Guest

  5. #4

    Default Re: Direct experience of text manipulation in Perl/TCL?

    [email]selwyn.leeke@camcon.co.uk[/email] (Selwyn Leeke) shaped the electrons to say:
    >As a little project, I'm trying to investigate the differences between
    >TCL and Perl(something never before attempted), especially in terms of
    >their text manipulation capabilities.
    OK, did someone issue a homework assignment that requires comparing
    TCL and Perl?

    -MZ, RHCE #806199299900541, ex-CISSP #3762
    --
    <URL:mailto:megazone@megazone.org> Gweep, Discordian, Author, Engineer, me..
    "A little nonsense now and then, is relished by the wisest men" 508-755-4098
    <URL:http://www.megazone.org/> <URL:http://www.eyrie-productions.com/> Eris
    MegaZone Guest

  6. #5

    Default Re: Direct experience of text manipulation in Perl/TCL?

    On 11 Sep 2003 15:06:57 GMT, Abigail <abigail@abigail.nl> wrote:
    >Processing text in Perl is a pain. It lacks decent parsing tools
    >(yeah, there's perl6 vaporware...), all it has is a slightly beefed
    >up sed. Man, I could tell you about the times I couldn't do
    >something simple in Perl, and had to use a gazillion badly
    >documented, buggy modules to get it done.
    >
    >Abigail
    You're an evil, evil person, Abigail.
    Helgi Briem Guest

  7. #6

    Default Re: Direct experience of text manipulation in Perl/TCL?

    Helgi Briem <f_baggins80@hotmail.com> wrote in comp.lang.perl.misc:
    > On 11 Sep 2003 15:06:57 GMT, Abigail <abigail@abigail.nl> wrote:
    >
    > >Processing text in Perl is a pain. It lacks decent parsing tools
    > >(yeah, there's perl6 vaporware...), all it has is a slightly beefed
    > >up sed. Man, I could tell you about the times I couldn't do
    > >something simple in Perl, and had to use a gazillion badly
    > >documented, buggy modules to get it done.
    > >
    > >Abigail
    >
    > You're an evil, evil person, Abigail.
    Of course she is! That's why we love her.

    Anno
    Anno Siegel Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139