Just random mumbling
Time pass to be honest,may work as a reference later,I am not sure.
Thursday, October 20, 2022
Concatenation of two strings in perl
$a
=
"water"
;
$b
=
" bottle"
;
$c
=
$a
.
$b;
# $c => water bottle
print
$c;
$a
=
"Hello"
;
$a
.=
" World"
;
# $a => Hello World
print
$a;
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment