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

  1. #1

    Default 2 newbie questions

    hello all,

    I've just start my learning on perl, and recently still learning some basic syntax.
    So I hope my question is still making sense.

    I am now learning about how to write files and wondering is that possible
    to inserting / overwriting bytes in files ( text / binary ). and I am on Win32.

    Also, I am still learning how to use perldoc, and I found something is tutorial...
    so.. would anybody tell how many tutorials inside and what are they ?

    thank a lot


    Bee Guest

  2. Similar Questions and Discussions

    1. Newbie questions
      I am a new user of Dreamweaver MX, and have very limited knowledge of what I need to use it to create HTML "popup" emails -- can someone give me an...
    2. very newbie questions about CF
      :o Apologies in advance but need real user advice here... can I use the ColdFusion functionality built into Dreamweaver MX 2004 to build a...
    3. Two newbie questions
      Hi, I'm just learning InDesign CS after using PageMaker for more than 10 years (I need to be fluent in both for work purposes). I have two questions...
    4. AIX Newbie Questions
      I have recently purchased a RS/6000 43P-150 workstation for the purpose of learning AIX 5L.... Q1) Do many use an RS/6000 workstation as their...
    5. (Newbie) AIX Questions
      Just started caring for RS/6000 running AIX 4.3. Planning on doing upgrade to 5.2 but have a couple of questions. 1. Volume group rootvg is...
  3. #2

    Default Re: 2 newbie questions

    Bee <perl@reborn.org> wrote:
    > hello all,
    >
    > I've just start my learning on perl, and recently still learning some basic
    > syntax.
    > So I hope my question is still making sense.
    >
    > I am now learning about how to write files and wondering is that possible
    > to inserting / overwriting bytes in files ( text / binary ). and I am on
    > Win32.
    Yes -- See "perldoc read" and "perldoc seek". Basically, you find where in
    the file you want to replace text (the offset) then replace from there.
    > Also, I am still learning how to use perldoc, and I found something is
    > tutorial...
    > so.. would anybody tell how many tutorials inside and what are they ?
    There are tons of online tutorials, but you should start with the perl
    documentation first. 'perldoc' has several forms, bascically,

    perldoc PACKAGE or DOCUMENTATION (example above)
    perldoc -q "some search criteria (q = query)
    perldoc -f "some function" (example: perldoc -f print)

    Start with 'perldoc perl'.

    Hope that gets you started.

    -Jeff


    __________________________________
    Do you Yahoo!?
    The New Yahoo! Shopping - with improved product search
    [url]http://shopping.yahoo.com[/url]
    Jeff Westman 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