hi,i'm writing the below code.but i was stuck in the middle.please help me...
if(open_con(F,"localhost","port"))
{
$text = "some expression to be send to the server";
syswrite(F,$text,500);
open(AUDIO,">$audio_file);
$receive = <F>; // instead of sysread(F,$receive,500)
while($receive = <F>)
{
print AUDIO $receive;
}
close AUDIO;
}
the open_con() function is to open connection to the server.that one is functionally ok.the above problem with the above code is that i don't know how to terminate the while loop after it finish writing the into the AUDIO file from streaming <F> . i try to modified like this.
while($receive=<F>)
{
if($receive eq "\n")
{
last;
}
print AUDIO $receive;
}
the above code,doesn't work too. so,please give me any suggestion or sample code to stop the streamming <F> and terminate it writing to the AUDIO file.
thank you in advance.
:D
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.