Re: Is there a list out there of all the \n characters?

2017-03-12 Thread ToddAndMargo
On 03/12/2017 03:32 PM, ToddAndMargo wrote: On 03/06/2017 02:14 AM, ToddAndMargo wrote: Hi All, Is there a list of all the \n pairs out there somewhere? Many thanks, -T Found it! https://docs.perl6.org/language/regexes#Backslashed,_predefined_character_classes This one helps too: http

Re: Is there a list out there of all the \n characters?

2017-03-12 Thread ToddAndMargo
On 03/06/2017 02:14 AM, ToddAndMargo wrote: Hi All, Is there a list of all the \n pairs out there somewhere? Many thanks, -T Found it! https://docs.perl6.org/language/regexes#Backslashed,_predefined_character_classes -- ~~ Computers are like air conditio

Re: Is there a list out there of all the \n characters?

2017-03-07 Thread Brent Laabs
Also keep in mind that \v matches one character of vertical space in regexes. Though \n can match one or two charcters, but not all of the Unicode vertical space types. On Tue, Mar 7, 2017 at 12:37 AM, H.Merijn Brand wrote: > On Tue, 7 Mar 2017 00:23:38 -0800, ToddAndMargo > wrote: > > > >>> 0

Re: Is there a list out there of all the \n characters?

2017-03-07 Thread H.Merijn Brand
On Tue, 7 Mar 2017 00:23:38 -0800, ToddAndMargo wrote: > >>> 002b93NEWLINE RIGHT > >>> 003037IDEOGRAPHIC TELEGRAPH LINE FEED SEPARATOR SYMBOL > >>> 004dd7HEXAGRAM FOR RETURN > >> > >> Do these have "\x" escape characters like "\n"? > > > > perl5 -wE'say "\x{2028}"' > >

Re: Is there a list out there of all the \n characters?

2017-03-07 Thread Elizabeth Mattijsen
> On 7 Mar 2017, at 09:21, H.Merijn Brand wrote: > > On Tue, 7 Mar 2017 00:13:49 -0800, ToddAndMargo > wrote: > >> On 03/06/2017 09:35 AM, H.Merijn Brand wrote: >> >>> 0aLINE FEED >>> 0cFORM FEED >>> 0dCARRIAGE RETURN >>> 1eRECORD SEPARATOR >>>

Re: Is there a list out there of all the \n characters?

2017-03-07 Thread ToddAndMargo
On 03/07/2017 12:21 AM, H.Merijn Brand wrote: On Tue, 7 Mar 2017 00:13:49 -0800, ToddAndMargo wrote: On 03/06/2017 09:35 AM, H.Merijn Brand wrote: 0aLINE FEED 0cFORM FEED 0dCARRIAGE RETURN 1eRECORD SEPARATOR 1fUNIT SEPARATOR 8d

Re: Is there a list out there of all the \n characters?

2017-03-07 Thread H.Merijn Brand
On Tue, 7 Mar 2017 00:13:49 -0800, ToddAndMargo wrote: > On 03/06/2017 09:35 AM, H.Merijn Brand wrote: > > > 0aLINE FEED > > 0cFORM FEED > > 0dCARRIAGE RETURN > > 1eRECORD SEPARATOR > > 1fUNIT SEPARATOR > > 8dREVERSE LINE FE

Re: Is there a list out there of all the \n characters?

2017-03-07 Thread ToddAndMargo
On 03/06/2017 09:35 AM, H.Merijn Brand wrote: 0aLINE FEED 0cFORM FEED 0dCARRIAGE RETURN 1eRECORD SEPARATOR 1fUNIT SEPARATOR 8dREVERSE LINE FEED 002028LINE SEPARATOR 0023ce ⏎ RETURN SYMBOL 00240a ␊ SYMBOL F

Re: Is there a list out there of all the \n characters?

2017-03-07 Thread ToddAndMargo
On 03/06/2017 08:28 AM, Will Coleda wrote: Can you clarify the request here, I'm not sure what you mean. On Mon, Mar 6, 2017 at 5:14 AM, ToddAndMargo wrote: Hi All, Is there a list of all the \n pairs out there somewhere? Many thanks, -T Hi Will, I am trying to figure out if there are

Re: Is there a list out there of all the \n characters?

2017-03-06 Thread Parrot Raiser
"There's at least one program out there where someone apparently used od on the output of a telnet session, saw an ancient hack for ancient teletypes involving a NUL, and thought that was the "right" way to do it" Another technological Cheshire Cat bite. :-)* On 3/6/17, Brandon Allbery wrote

Re: Is there a list out there of all the \n characters?

2017-03-06 Thread Brandon Allbery
On Mon, Mar 6, 2017 at 12:35 PM, H.Merijn Brand wrote: > But don't be surprised to see > > \r\r\n > And other weird stuff. There's at least one program out there where someone apparently used od on the output of a telnet session, saw an ancient hack for ancient teletypes involving a NUL, and t

Re: Is there a list out there of all the \n characters?

2017-03-06 Thread H.Merijn Brand
On Mon, 6 Mar 2017 18:08:47 +0100, Luca Ferrari wrote: > On Mon, Mar 6, 2017 at 11:14 AM, ToddAndMargo wrote: > > Hi All, > > > > Is there a list of all the \n pairs out there somewhere? > > > > Not sure, but if you mean a newline than I'm aware only of: > - \n (unix) > - \r\n (dos) > - \n\r

Re: Is there a list out there of all the \n characters?

2017-03-06 Thread Brandon Allbery
On Mon, Mar 6, 2017 at 12:08 PM, Luca Ferrari wrote: > - \n\r (old mac) Pre-OS X used simply \r. not \n\r. -- brandon s allbery kf8nh sine nomine associates allber...@gmail.com ballb...@sinenomine.net unix, openafs, kerberos, inf

Re: Is there a list out there of all the \n characters?

2017-03-06 Thread Luca Ferrari
On Mon, Mar 6, 2017 at 11:14 AM, ToddAndMargo wrote: > Hi All, > > Is there a list of all the \n pairs out there somewhere? > Not sure, but if you mean a newline than I'm aware only of: - \n (unix) - \r\n (dos) - \n\r (old mac) At least I'm not unlucky enough to have encountered another combinat

Re: Is there a list out there of all the \n characters?

2017-03-06 Thread Will Coleda
Can you clarify the request here, I'm not sure what you mean. On Mon, Mar 6, 2017 at 5:14 AM, ToddAndMargo wrote: > Hi All, > > Is there a list of all the \n pairs out there somewhere? > > Many thanks, > -T -- Will "Coke" Coleda

Is there a list out there of all the \n characters?

2017-03-06 Thread ToddAndMargo
Hi All, Is there a list of all the \n pairs out there somewhere? Many thanks, -T