String concatenation is the operation of joining two character strings end-to-end.

learn more… | top users | synonyms

2
votes
2answers
46 views

Concatenation of multidimensional string arrays in java

I wish to print the contents of String[][] myArray using only one print statement. Obviously the array can be printed easily by looping through it, but for the sake of clean log files, I'd like the ...
0
votes
1answer
31 views

List unique values from column based on an ID Field

Warning I'm a Newbie so Sorry if there is anything wrong with the question or the explanation ... I have a table 'XYZ' with a list of Attachments (OrigFileName) and a field UniqueAttchID that is ...
0
votes
2answers
46 views

concatenating strings to make variable name

I want to change the name of the output of my R function to reflect different strings that are inputted. Here is what I have tried: kd = c("a","b","d","e","b") test = function(kd){ ...
2
votes
1answer
63 views

Using SELECT statement to assign variable

Could you explain me the strange behaviour? DECLARE @t VARCHAR(256) = '' SELECT @t = @t + CAST(smb.symbol AS VARCHAR(256)) FROM ( SELECT 1,'7' UNION ALL SELECT 2,'8' UNION all ...
1
vote
2answers
37 views

python 2.7 to python 3.2 string formatting error

I have this piece of python code: args =(12, 45, 7854) 2 result = 123 3 answer = 456 4 print 'Test with data: ', args, ' result: ', result, ' answer: ', answer Now when I run this with ...
1
vote
3answers
57 views

Merging a list of Strings using mkString vs foldRight

I am currently trying out things in Scala, trying to get accustomed to functional programming as well as leaning a new language again (it's been a while since last time). Now given a list of strings ...
0
votes
3answers
81 views

String concatenation memory usage in C#

Is this two patterns of String Concatenation consume same amount of memory? //Method 1 String testString = "Test " + " string " + " content"; //Method 2 String testString = "Test "; testString = ...
0
votes
1answer
68 views

concat string IE8 SCRIPT438: Object doesn't support property or method

I have this simple Javascript for string concatenation: function stampaLista(store) { lista = "<table ><tr>" + "<td class='titoloLista' style='width:80px'>Data ...
0
votes
4answers
44 views

Concatenate each line of 2 text files

File1.txt is: Abcd Efghhh Ijkl +1000 other lines File2.txt is: 1234 1368 QL23372 +1000 other lines I want to create File3.txt containing: Abcd$1234 Efghhh$1368 Ijkl$QL23372 +1000 other lines ...
1
vote
5answers
70 views

String concat behaves in different way

Can someone explain the following scenario? String s = "Testing"; s.concat("Java 1"); System.out.println(s); s = s.concat(" Java 2"); System.out.println(s); The output of the above is: Testing ...
2
votes
2answers
49 views

Can I use require(“path”).join to safely concatenate urls?

Is this safe to use require("path").join to concatenate urls, for example: require("path").join("http://example.com", "ok"); //returns 'http://example.com/ok' ...
0
votes
4answers
65 views

Concatenate auto generated strings in java with a space seperator in between

I have a string array variable which values changes continuously. Random arrays are generated from it. This is what i have: String trans = Utility.GetColumnValue(testdata[k], "suggest_text_2"); The ...
0
votes
1answer
57 views

Concatenating an Empty String

While using JavaScript, I am running into problems with concatenating empty strings. For example, declaring var usersToAppend, leadsToAppend = ""; $(document).ready(function() { ...
-1
votes
0answers
37 views

C# string.format versus concatenation performance [duplicate]

Are there are performance differences between using string.format or plain old concatenation in C#? I am using mostly concatenation but are there any reasons to use string.format?
0
votes
1answer
37 views

awk: String Concat adds “0”

I tried to concatenate two strings in an awk-script but the result I got has a "0" at the last position. (input...) | awk '$1 ~ "match" { (...) STRING1 = $2 ; ...
1
vote
1answer
32 views

Returning unique strings from two arrays of strings, concatenated in one string VBA

I have a code that is close to working but not quite. I have two arrays astrArray1 and astrArray2 and the function findUniques() is supposed to return the unique strings(names) among the two arrays. I ...
3
votes
4answers
66 views

single and double quotes in php variable

How can I combine this code with all single and double quotes as it should be. I have tried several combinations and I can't make it work. This one is my last try so please help. What would be a good ...
1
vote
1answer
80 views

concat two numbers in sas proc sql

I have a table that has two numeric values called year and month. I would like to create a new table that has one value called ym which is just the concatenation of year and month. Here is an example: ...
2
votes
1answer
62 views

How can I concatenate a string with a link that has spaces in powershell

Here is my code that checks when users passwords will expire and emails them if it will expire in less than 14 days. Since the link in the body of the email has spaces in it, the link does not ...
2
votes
1answer
37 views

String concatenation performance

Right now I use a list to store altered string and return a string with .join() def applyCoder(text, coder): l = [] for i in text: if i in coder: l.append(coder[i]) ...
0
votes
1answer
36 views

Concatenate character to a sentence c

How do you add a char to a sentence. For example I have a player1 and would like to add the player1 to the beginning of the sentence " please enter how many times you would like to shuffle the deck. ...
1
vote
1answer
58 views

Using sub parametr in string with VBScript

I have a webpage that pulls a dynamic list of servers, and I want to be able to launch putty/winSCP with the select Linux boxes. I can't seem to pass parameters effectively. <a href="#" ...
1
vote
0answers
35 views

SQL Server 2005 - String Concatenation [duplicate]

I have a table that looks like below (Before) and using SQL I would like to make it the same as the table shown in 'After'. Image here: How would this be possible in SQL Server? Many thanks
-2
votes
1answer
91 views

Concatenating 2 basic strings together

I have two strings: string word; string alphabet; word has some input that I passed on to; let's say "XYZ". alphabet has the alphabet except XYZ, so it's "ABCDEFGHIJKLMNOPQRSTUVW" When I tried to ...
1
vote
2answers
23 views

Concatenating 2 strings in a partial for a class style

Ok so I am banging my head against the desk on something super simple I should be able to do and cant... I am trying to concatenate 2 strings, So I can have a dynamic class for a partial based on ...
2
votes
1answer
76 views

Memory allocation in string concatenation in C#

Let, string a = “Test”; string b = “test 2”; string c = a + b The output of c is "Testtest 2" I would like to know how is the memory allocated?
0
votes
1answer
42 views

SIGSEGV for Column-wise matrix using string concatenation in Fortran

I am trying to read a column of a flowfield snapshot (uvw stacked, ~24k of them) and assemble multiple snapshots (which are saved into a individual .dat files, as seen in the code posted) into a ...
0
votes
4answers
45 views

Java string parameterisation

In one of my java tools, I have some strings being created repeatedly with changing variables contained within like so: for (String value : values) { // unrelated code omitted for clarity ...
0
votes
2answers
77 views

Javascript - I can't concatenate at the beginning of my string

Here's what I want to do: Check if there is the first character "@" within my string, If not, add it. Here is my code: $(document).ready(function(){ $("#twitter").blur(function() { ...
0
votes
2answers
155 views

Concatenate multiple HTML text inputs with stored variable

I am trying to create a simple html form which asks for some details from a user and once this has been submitted will add the text to some predetermined text in a text box. Example of this... Text ...
0
votes
2answers
39 views

Javascript: String concatenation in object constructor

Been trying to create a JavaScript object member that always contains a common string. Whenever I create a new object, instead of concatenating the string, it overwrites it with the passed value on ...
0
votes
2answers
54 views

Insert a PHP constant into a string

I have this file called db.php which makes the connection to the database. <?php define("DB_HOST", "localhost"); define("DB_NAME", "login"); define("DB_USER", "admin"); ...
0
votes
0answers
358 views

Concatenate multiple rows into a single cell in a table with multiple columns?

I am using SQL Server 2000. I book meetings and A/V equipment for a company. I would like to concatenate the string fields in the 'AV Equipment' column. Here is my current syntax, for reference: ...
0
votes
6answers
123 views

Allocate extra memory to the character array C++

I have this problem where I have a string and I pass it to the function as a character pointer. void test(char * str) { .... } where str = "abc". Now I want to add few extra characters to the ...
-1
votes
4answers
60 views

How to use .= in jQuery

I have some HTML like: <div class="blah"> <span class="fileName">1.jpg</span> </div> <div class="blah"> <span class="fileName">2.jpg</span> ...
-2
votes
2answers
72 views

How to interpret hex string as a character string in C

I have these strings of hex: 0F54C47A B97798C9 348C211B 0911F13F 416E9759 They are the result of five printf("%08X\n", sha_digest.Message_Digest[i]); calls where i runs from ...
1
vote
1answer
84 views

Read and value from registry and concatenate and finally assign to a variable in wix bootstrapper

I want to launch the application immediately after the installation. My code is as follows <Variable Name="LaunchTarget" Value="C:\ProgramFiles\MySetup\MyExe.exe" /> If the user change the ...
1
vote
2answers
73 views

Can't add comma to sql text

Why doesn't this statement work? UPDATE users SET downloaded = downloaded + "4,"; It will only set downloaded equal to 4. downloaded is of type text. What am i doing wrong? I'm using mysql.
1
vote
2answers
397 views

Visual Basic 2010, Picturebox resource && Variable?

I've tried finding the solution but to no avail. I believe what i want is string concatenation... I have a variable "pictureid=face2" in my resources folder i have a picture called "face2.jpg". On ...
0
votes
1answer
43 views

How to concat 2 numeric fields and convert to string at the same time in SQL server SELECT

I have a table with 2 numeric fields: groupID and itemID. Assume groupID is less than 2 digits in length and itemID less than 3 digits, I want to do this operation: Select stringID = groupID ...
-3
votes
2answers
107 views

Concatenation of LPWSTR strings

In Visual C++, I have a LPWSTR mystring; which is already defined somewhere else in the code. I want to create a new LPWSTR containing: "hello " + mystring + " blablabla" (i.e. a ...
6
votes
4answers
300 views

What happens if you remove the space between the + and ++ operators?

EDIT 1 DISCLAIMER: I know that +++ is not really an operator but the + and ++ operators without a space. I also know that there's no reason to use this; this question is just out of curiosity. So, ...
0
votes
4answers
33 views

Concatenating lang CONST and STR CONST in PHP

Trying to concatenate: <?php class MD_ImpFormularios extends CI_Model { private $dir_forms = __DIR__ . 'Hola'; Gives: PHP Parse error: syntax error, unexpected '.', expecting ',' or ';' in ...
16
votes
9answers
1k views

What better way to concatenate string in python?

Understand "better" as a quicker, elegant and readable. I have two strings (a and b) that could be null or not. And I want concatenate them separated by a hyphen only if both are not null: a - b a ...
1
vote
3answers
122 views

How to construct a std::string from a std::vector<string>?

I'd like to build a std::string from a std::vector<std::string>. I could use std::stringsteam, but imagine there is a shorter way: std::string string_from_vector(const ...
0
votes
1answer
126 views

Javascript 4-image slideshow w/ arrays & setTimeout

<script type=text/javascript> var topLeftImages = ["op.jpg", "qa.jpg", "fl.jpg", "eatgr.jpg", "na.jpg", "ctcc.jpg", "na.jpg", "oacahu.jpg", "hc.jpg", "sup.jpg", "oa.jpg", "rffcc.jpg"]; var ...
0
votes
3answers
144 views

String to variable name in R

I am cleaning a data set and I need to choose the variables depending on another variable. Let's say that if ID = 1, I need to introduce in the data frame the variable VAR01, if ID = 2, I need VAR02, ...
0
votes
1answer
74 views

javascript dom concatenate background-position string / auto update background image?

I seem to have trouble with this line: back_x += 1; back_y += 10; document.getElementById('body_id').style.backgroundPosition = back_x + 'px ' + back_y + 'px'; .css file body { ...
0
votes
1answer
60 views

how to concatenate matrix into one in a loop?

i want to concatenate some data from n files into one matrix after a loop. Now the following codes work, but how can i add all the date_1, date_2,.....,date_n into date? date_1 = cell2mat ...
4
votes
3answers
421 views

How should I allocate memory for c-string char array?

So in attempting to learn how to use C-Strings in C++, I'm running into issues with memory allocation. The idea here is that a new string is created of the format (s1 + sep + s2) The text I'm using ...

1 2 3 4 5 9