i have two variables ch1 and ch2 which get the first letters from two strings called forname and surname, i need to merge these two characters into a string and concatenate it with another to make an email address e.g:
forname=admin;
surname=bodmin;
ch1=a;
ch2=b;
//This is the string i need to get the characters into
Question
FlibbyFlobby
hey,
i have two variables ch1 and ch2 which get the first letters from two strings called forname and surname, i need to merge these two characters into a string and concatenate it with another to make an email address e.g:
forname=admin;
surname=bodmin;
ch1=a;
ch2=b;
//This is the string i need to get the characters into
initials=
email=initials + "@blah.com";
any help would be great :)
Link to comment
Share on other sites
2 answers to this question
Recommended Posts