G
Greg Lindstrom
Hello-
I have a text file generated on a HP-9000 running HP-Unix with embedded
control characters and would like to read it in, modify it, and write it out
in PDF format. The new page character is control-L which I can match with
regular expressions as
/^M (build using control-Q control-M)
but when I attempt to use this to match the string in the program using
if re.match('^M', input_line): # using control-Q control-M
# issue a page feed
it will not match (no new pages are generated).
I am opening and reading the input file in binary mode. Anyone see what I'm
doing wrong?
Thanks!
--greg
Greg Lindstrom (501) 975-4859
NovaSys Health (e-mail address removed)
"We are the music makers, and we are the dreamers of dreams" W.W.
I have a text file generated on a HP-9000 running HP-Unix with embedded
control characters and would like to read it in, modify it, and write it out
in PDF format. The new page character is control-L which I can match with
regular expressions as
/^M (build using control-Q control-M)
but when I attempt to use this to match the string in the program using
if re.match('^M', input_line): # using control-Q control-M
# issue a page feed
it will not match (no new pages are generated).
I am opening and reading the input file in binary mode. Anyone see what I'm
doing wrong?
Thanks!
--greg
Greg Lindstrom (501) 975-4859
NovaSys Health (e-mail address removed)
"We are the music makers, and we are the dreamers of dreams" W.W.