Hey Jerry,
I have a one quick solution for you.
str = "\"q4171\",\"(08/11/03 23:30:48)\",\"\"";
@array = split(/,/,$str);
foreach (@array)
{
s/\"//g ;
}
HTH
Pinku
Jerry Preston wrote:
Hi!,
I am trying to breakdown this line:
"q4171","(08/11/03 23:30:48)",""
with ( @data ) = split /[,|\"]/
hi Jerry,
On second thought, I have a better solution for you.
$str = "\"q4171\",\"(08/11/03 23:30:48)\",\"\"";
@array = $str =~ /"([^"]*)"/g;
HTH
Pinku
Jerry Preston wrote:
Hi!,
I am trying to breakdown this line:
"q4171","(08/11/03 23:30:48)",""
with ( @data ) = split /[,|\"]/;#"
but I ge
hi,
There is a text entry widget in perk/tk. It is exactly similar to the
input box of VB. While creating the entry widget you associate a scalar
variable to it. You can then use this variable to get/set the text or
value in the entry widget.
HTH
Pinku Bhatnagar
Dan Muey wrote:
Hi
Howdy
hi,
There is a text entry widget in perk/tk. It is exactly similar to the
input box of VB. While creating the entry widget you associate a scalar
variable to it. You can then use this variable to get/set the text or
value in the entry widget.
HTH
Pinku Bhatnagar
Dan Muey wrote:
Hi
Howdy
Hi Sachin,
I think you cannot set the screen resolution thru perl/tk.
Pinku
Sachin Hegde wrote:
Hi All,
This is actually a Tk querry.Can we Set the screen resolution through
Perl/Tk ?
sincerely,
Sachin
_
Attention NRIs! Send mone
hi,
There is a text entry widget in perk/tk. It is exactly similar to the
input box of VB. While creating the entry widget you associate a scalar
variable to it. You can then use this variable to get/set the text or
value in the entry widget.
HTH
Pinku Bhatnagar
Dan Muey wrote:
Hi
Howdy
hi,
There is a text entry widget in perk/tk. It is exactly similar to the
input box of VB. While creating the entry widget you associate a scalar
variable to it. You can then use this variable to get/set the text or
value in the entry widget.
HTH
Pinku Bhatnagar
--
To unsubscribe, e-mail