Thread Stringoperation in for-Schleife (8 answers)
Opened by cohama at 2014-06-04 11:49

cohama
 2014-06-04 11:49
#175888 #175888
User since
2011-08-16
102 Artikel
BenutzerIn

user image
Hallo zusammen,

ich habe folgendes Problem zu lösen. Ich muss in einer for-Schleife zwei Strings zu einem neuen zusammen setzen, dabei kommt stets raus diese Ergebnis raus:
Code: (dl )
1
2
Variable4
_Variable3

Die for-Schleife
Code: (dl )
1
2
3
4
5
6
7
8
for($ct=0;$ct<=0;$ct++){
$Variable1 = $Array[$ct];
$Variable2 = $Array2[$ct];
$Variable3 = "11";
$Variable4 = $Variable1;
$Variable5 = $Variable4."_".$Variable3;
print "$Variable5";
}

Es soll $Variable5=$Variable4_$Variable3 raus kommen.
Last edited: 2014-06-04 11:52:18 +0200 (CEST)

View full thread Stringoperation in for-Schleife