IBM says PL/I strings are limited - pl1

This is a discussion on IBM says PL/I strings are limited - pl1 ; David, All IBM PL/I compilers limit character (and bit) strings to a maximum length of 32767. But there are functions to move, compare, search etc buffers of up to 2G in size. - Peter Notes address: Peter Elderon/Santa Teresa/IBM@IBMUS Internet ...

+ Reply to Thread
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 18

IBM says PL/I strings are limited

  1. Default IBM says PL/I strings are limited

    David,

    All IBM PL/I compilers limit character (and bit) strings to a maximum length
    of 32767. But there are functions to move, compare, search etc buffers of up
    to 2G in size.

    - Peter

    Notes address: Peter Elderon/Santa Teresa/IBM@IBMUS
    Internet address: elderon@us.ibm.com






  2. Default Re: IBM says PL/I strings are limited

    AS YOU WERE ALSO TOLD HERE, FUCKWIT!
    "David Frank" <dave_frank@hotmail.com> wrote in message
    news:w353f.13558$QE1.3538@newsread2.news.atl.earthlink.net...
    > David,
    >
    > All IBM PL/I compilers limit character (and bit) strings to a maximum
    > length of 32767. But there are functions to move, compare, search etc
    > buffers of up to 2G in size.
    >
    > - Peter
    >
    > Notes address: Peter Elderon/Santa Teresa/IBM@IBMUS
    > Internet address: elderon@us.ibm.com
    >
    >
    >
    >
    >




  3. Default Re: IBM says PL/I strings are limited

    You mis-addressed below, it shud have in reply to any of about 20 messages
    from maroon#1 who has yet to refute his
    statement, "PL/I strings can be any length" but then you are intimated by
    his superior intellect.

    "Mark Yudkin" <myudkinATcompuserveDOTcom@boingboing.org> wrote in message
    news:434f88c3$0$1161$5402220f@news.sunrise.ch...
    > AS YOU WERE ALSO TOLD HERE, FUCKWIT!
    > "David Frank" <dave_frank@hotmail.com> wrote in message
    > news:w353f.13558$QE1.3538@newsread2.news.atl.earthlink.net...
    >> David,
    >>
    >> All IBM PL/I compilers limit character (and bit) strings to a maximum
    >> length of 32767. But there are functions to move, compare, search etc
    >> buffers of up to 2G in size.
    >>
    >> - Peter
    >>
    >> Notes address: Peter Elderon/Santa Teresa/IBM@IBMUS
    >> Internet address: elderon@us.ibm.com
    >>
    >>
    >>
    >>
    >>

    >
    >




  4. Default Re: IBM says PL/I strings are limited

    No. I addressed my response to you, as was absolutely clear from the
    addressee identification (clearly specified after the comma). It is you who
    have failed to understand that there is a distinction between the PL/I
    language and the length restrictions imposed by the current IBM compilers,
    and who has totally failed to understand Peter Elderon's clear indication of
    just that fact in the post you even quote. And it's you who has failed to
    understand the MEM* functions.

    "David Frank" <dave_frank@hotmail.com> wrote in message
    news:K7M3f.14670$q1.13154@newsread3.news.atl.earthlink.net...
    > You mis-addressed below, it shud have in reply to any of about 20 messages
    > from maroon#1 who has yet to refute his
    > statement, "PL/I strings can be any length" but then you are intimated
    > by his superior intellect.
    >
    > "Mark Yudkin" <myudkinATcompuserveDOTcom@boingboing.org> wrote in message
    > news:434f88c3$0$1161$5402220f@news.sunrise.ch...
    >> AS YOU WERE ALSO TOLD HERE, FUCKWIT!
    >> "David Frank" <dave_frank@hotmail.com> wrote in message
    >> news:w353f.13558$QE1.3538@newsread2.news.atl.earthlink.net...
    >>> David,
    >>>
    >>> All IBM PL/I compilers limit character (and bit) strings to a maximum
    >>> length of 32767. But there are functions to move, compare, search etc
    >>> buffers of up to 2G in size.
    >>>
    >>> - Peter
    >>>
    >>> Notes address: Peter Elderon/Santa Teresa/IBM@IBMUS
    >>> Internet address: elderon@us.ibm.com
    >>>
    >>>
    >>>
    >>>
    >>>

    >>
    >>

    >
    >




  5. Default Re: IBM says PL/I strings are limited


    "Mark Yudkin" <myudkinATcompuserveDOTcom@boingboing.org> wrote in message
    news:435200a4$0$1146$5402220f@news.sunrise.ch...
    > No. I addressed my response to you, as was absolutely clear from the
    > addressee identification (clearly specified after the comma). It is you
    > who have failed to understand that there is a distinction between the PL/I
    > language and the length restrictions imposed by the current IBM compilers,
    > and who has totally failed to understand Peter Elderon's clear indication
    > of just that fact in the post you even quote. And it's you who has failed
    > to understand the MEM* functions.


    Sounds like the lyric to a old song, all you maroons can sing-along,
    substituting "yes, have no bananas"
    with "yes, pl/i has no long-strings"

    http://www.goodeatsfanpage.com/Humor.../NoBananas.htm



  6. Default Re: IBM says PL/I strings are limited

    David Frank wrote:

    (snip)

    > Sounds like the lyric to a old song, all you maroons can sing-along,
    > substituting "yes, have no bananas"
    > with "yes, pl/i has no long-strings"


    PL/I has longer varying length strings than Fortran.
    For fixed length strings arrays of strings work just about as well.

    What problem would you like to do with long strings?

    -- glen


  7. Default Re: IBM says PL/I strings are limited


    "glen herrmannsfeldt" <gah@ugcs.caltech.edu> wrote in message
    news:RNmdnePRqbnp187eRVn-tw@comcast.com...
    > David Frank wrote:
    >
    > (snip)
    >
    >> Sounds like the lyric to a old song, all you maroons can sing-along,
    >> substituting "yes, have no bananas"
    >> with "yes, pl/i has no long-strings"

    >
    > PL/I has longer varying length strings than Fortran.
    > For fixed length strings arrays of strings work just about as well.
    >
    > What problem would you like to do with long strings?
    >
    > -- glen
    >


    I have re-posted CANT#16 several times with no translation, except for the
    THEORETICAL multicsfan response.


    16. CANT declare character variable with length = 50k
    ! ----------------------
    program show_big_string_support
    character(50000) :: big_string
    big_string(50000-10 = 'Hello World'
    write (*,*) big_string(50000-10
    end program
    Output: you guessed it!!






  8. Default Re: IBM says PL/I strings are limited

    David Frank wrote in message ...
    >
    >"glen herrmannsfeldt" <gah@ugcs.caltech.edu> wrote in message
    >news:RNmdnePRqbnp187eRVn-tw@comcast.com...


    >> PL/I has longer varying length strings than Fortran.
    >> For fixed length strings arrays of strings work just about as well.
    >>
    >> What problem would you like to do with long strings?
    >>
    >> -- glen


    >I have re-posted CANT#16 several times with no translation,


    A translation was posted.

    > except for the THEORETICAL multicsfan response.
    >
    >16. CANT declare character variable with length = 50k
    > ! ----------------------
    > program show_big_string_support
    > character(50000) :: big_string
    > big_string(50000-10 = 'Hello World'
    > write (*,*) big_string(50000-10
    > end program
    >Output: you guessed it!!


    I posted a compiled segment a while back, containing this declaration:

    dcl big_string character (50000);






  9. Default Re: IBM says PL/I strings are limited


    "robin" <robin_v@bigpond.com> wrote in message
    news:ONW4f.20732$U51.9001@news-server.bigpond.net.au...
    >
    > I posted a compiled segment a while back, containing this declaration:
    >
    > dcl big_string character (50000);
    >


    Folks just ignore the ELIZABOT reply
    for the simple reason he refuses to post a CANT#16 solution, (never has,
    never will)



  10. Default Re: IBM says PL/I strings are limited

    David Frank wrote in message ...
    >
    >"robin" <robin_v@bigpond.com> wrote in message
    >news:ONW4f.20732$U51.9001@news-server.bigpond.net.au...
    >>
    >> I posted a compiled segment a while back, containing this declaration:
    >>
    >> dcl big_string character (50000);

    >
    >Folks just ignore the ELIZABOT reply
    >for the simple reason he refuses to post a CANT#16 solution, (never has,


    You're not telling the truth again, in spite of my refreshing your
    memory that one was posted.





+ Reply to Thread
Page 1 of 2 1 2 LastLast

Similar Threads

  1. Raw strings to normal strings conversion?
    By Application Development in forum Python
    Replies: 4
    Last Post: 08-23-2007, 05:20 AM
  2. Replies: 1
    Last Post: 04-18-2007, 12:51 PM
  3. limited hdr support?
    By Application Development in forum Graphics
    Replies: 3
    Last Post: 09-29-2006, 01:07 PM
  4. UML um...limited?
    By Application Development in forum Software-Eng
    Replies: 5
    Last Post: 07-06-2006, 08:31 AM
  5. Extracting strings delimited by other strings
    By Application Development in forum Perl
    Replies: 2
    Last Post: 05-06-2005, 09:26 PM