Re: simple class programming but getting lost. Programming Software Development by Dave Sinkula Concatenation to me means adding text to an existing string. Apparently your version is to take two strings and create a new third string. But you aren't [inlinecode]new[/inlinecode]ing the third string when you create it (from the two strings that will compose it). Re: Pass values into a URL? Programming Software Development by Fbody Concatenation is what you need, look it up and see what … Re: compiler problem Programming Software Development by jon.kiparsky + concatenation would work, I suppose, in line 16, but it's not what you want in a printf(). printf is for formatted output, you wouldn't want to just cat the variables onto the end of it. For that, you want println or print, probably println. Re: Concatenating a string with a textbox Programming Web Development by ko ko Concatenation needs period '.'. You need to place the period between the string or variable that you want to concate. [code] $string1 = "This is string 1"; $string2 = "This is string 2"; $string 1 . $string2; ---------------------------------- $string1 . ". " . $string2; [/code] Re: reading text file, put in textbox. Programming Software Development by ddanbe Concatenation? TotalStr = result[0] + " " + . . . + " " + result[4] + " " + "This is a line"; concatenation of two linked lists Programming Software Development by galmca …=temp1; } } for(p=start;p!=NULL;p=p->ptr) /*concatenation of two lists*/ { for(k=start1;k!=NULL;k=k… Re: concatenation of two linked lists Programming Software Development by manees …; %d\n",pt->data); pt=pt->link; } } // concatenation of lists struct node *concat(struct node *p, struct node… Concatenation Function semantic error ? Programming Software Development by new programer hello all I'm trying to do a concatenation function I do not want to you use the strings … Re: Concatenation Function semantic error ? Programming Software Development by Clinton Portis [quote]I'm trying to do a concatenation function I do not want to you use the strings … Concatenation and auto number generation Programming Software Development by Ruchi224 ….. I want a part number to be generated, which is concatenation of : type, role, loc and number (0001).. Also, the last… Concatenation issue in PHP Programming Web Development by vishalonne … `if($_SESSION['eschools'` in below code DreamWeaver shows error in concatenation - $message='<table width="80%" cellspacing="2… C++11 Compile-time String Concatenation with constexpr Programming Software Development by mike_2000_17 …any practical, lean-and-mean implementation of string concatenation using constexpr. So, I wrote my own… it will become clear as we look at a concatenation operator: class literal_str_list { //... as above .. template… that the `literal_str_list` object involved in the concatenation (passed to the constructor) is always going … Re: C++11 Compile-time String Concatenation with constexpr Programming Software Development by mike_2000_17 …that I posted originally. The problem is that the concatenation operator assumes that the second literal string list is … list but only a single node. Therefore, the concatenation only really works for adding one simple string literal …libraries because of the elimination of run-time string concatenation code in favor of static strings in read-only… Re: C++11 Compile-time String Concatenation with constexpr Programming Software Development by mike_2000_17 …plain version with run-time strings (`std::string`) concatenation. And, it overwhelms my system again. The …not a good tradeoff. **Conclusion** Compile-time string concatenation, under the current language limitations (C++11 and …native operations for string or array concatenations. String concatenation is a trivial operation for a compiler to… Re: C++11 Compile-time String Concatenation with constexpr Programming Software Development by mike_2000_17 …, and that it is too heavy-duty. In that library, concatenation is implemented by turning the string literal into a variadic… template instantiations with variadic templates. My aim with this string concatenation stuff was mostly to avoid going into template meta-programming… Simple log script... Use of uninitialized value in concatenation Programming Software Development by Nintendo … the error, it spits out Use of uninitialized value in concatenation (.) or string at ebaylogs.cgi line 10. Use of… uninitialized value in concatenation (.) or string at ebaylogs.cgi line 10. Use of… uninitialized value in concatenation (.) or string at ebaylogs.cgi line 10. Use of… Basic Level Python (string concatenation) Programming Software Development by bigredaltoid …*e*l*l*o*”. Hint: Think about string concatenation and accumulators. Recall how numeric counters and accumulators work… with a loop and extend this to string concatenation. 3. Creates another new string by reversing the… string would be “olleH”. Hint: Remember that string concatenation is not commutative. 4. Prints both new strings, along… PHP string concatenation Programming Web Development by duliduli556 String concatenation is the string manipulation method when you join 2 or … it is a quite easy task. You can use the concatenation operator which is the ‘.’ (dot). You can join 2 or… C preprocessor concatenation Programming Software Development by ricardo.crudo … Everybody. I'm with a classic problem in C preprocessor concatenation. This is the situation: [CODE] #define BAUDRATE(VAL) (B ## VAL… the error: BBAUDRATE_VAL undeclared I need that the result of concatenation be: B1200, B2400, B9600, ... Thanks. Re: Basic Level Python (string concatenation) Programming Software Development by JoshuaBurleson … the semester that you should be farther along than string concatenation by now...I learned the majority of what I know… Re: C preprocessor concatenation Programming Software Development by Narue [QUOTE]I need that the result of concatenation be: B1200, B2400, B9600, ...[/QUOTE] How do you expect to get the runtime value of BAUDRATE_VAL[i] at compile time? Use of uninitialized value in concatenation Programming Software Development by kahaj … response, it tells me "Use of uninitialized value in concatenation (.) or string at bonus.cgi line 'varies'." I haven… character concatenation Programming Software Development by savinki … whole. Is there any other inbulid function to do character concatenation? [code=cplusplus] char *p = "asd"; char * a; for… Re: character concatenation Programming Software Development by savinki … suits for my need. becoze i m using that character concatenation program segment in another one. basically i need to assign… Warning: uninitialized value in concatenation (.) or string Programming Software Development by ajay_p5 … my script which is attached:Use of uninitialized value in concatenation (.) or string at aj.pl in this line : print OUTFILE… Re: Warning: uninitialized value in concatenation (.) or string Programming Software Development by DeepZ … my script which is attached:Use of uninitialized value in concatenation (.) or string at aj.pl in this line : print OUTFILE… jQuery selector concatenation help Programming Web Development by seniramsu … (div button and it's related info div), by using concatenation to change the name of the selector? Hope that makes… Problems with concatenation in body of PHP Mail Programming Web Development by abstrand … fields. The mail message sends just fine with the following concatenation and coding: [CODE]while ($row = mysql_fetch_assoc($result)) { $to = "abstrand… Re: Problems with concatenation in body of PHP Mail Programming Web Development by richieking … inside that also works the same. This technique takes the concatenation away. No errors suppressed. try it yourself on your server… String formatting using variable/string concatenation Programming Software Development by gis-brad …; I am looking to have locTextFormat be read as a concatenation of variables and strings [/CODE] In the code above, if…