Refers to the joining of two or more tokens into a single token. In programming, this generally refers to string concatenation, which joins multiple strings into a single string.

learn more… | top users | synonyms (1)

0
votes
1answer
12 views

Concatenate Import Expression in SQL

I have the following query: select @Box=Box,@Code=Code,@Validity=Validity,@Type=[Type] FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0', 'Excel 12.0;Database=C:\Barcodes.xlsx;HDR=YES', ...
1
vote
1answer
22 views

Putting a concatenate inside of a count if

Alright, I have two excel functions that work. I want to combine them into one. Here are the two that work: =COUNTIF('ALL EE Active BEG PERIOD'!$A:$B, 'HC Summary Details'!$A6) =CONCATENATE('ALL EE ...
0
votes
1answer
6 views

how to concatenate UITextField value in URL xcode?

i have this url : http://demii.com/demo/gearlode/links.php?username=zohaib9&email=n@m.com&password=123&action=registration UITextField = *usernameTextField UITextField = *emailTextField ...
0
votes
0answers
34 views

Google Drive - How to Autopopulate Google Spreadsheet with Concatenate functions when users submit data via webform?

I have a Google Drive Spreadsheet in which I'm trying to have a formula autopopulate all the way down the rows, as users submit data via a webform attached to the spreadsheet. The tricky part is that ...
1
vote
1answer
42 views

Best way to concatenate strings in javascript?

In JavaScript, I have a loop that has many iterations, and in each iteration, I am creating a huge string with many += operators. Is there a more efficient way to create a string? I was thinking about ...
1
vote
2answers
35 views

reading sections from a large text file in python efficiently

I have a large text file containing several million lines of data. The very first column contains position coordinates. I need to create another file from this original data, but that only contains ...
0
votes
1answer
29 views

Concatenate variable horizontally to make one variable in matlab

Is it possible to concatenate multiple variable horizontally to make a single variable in Matlab? For Example, I want to join: year = 2001, month = 06, day = 15 to make one variable '20010615' ...
0
votes
0answers
23 views

MsAccess similar Listagg function of Oracle

As the title I want to find a way to concatenate values of column into a String. I know of Listagg in Oracle but is there a similar one for MsAccess.
0
votes
1answer
12 views

Only display a character if the ISNULL has a valid entry

In SQL Server, what I'm looking at doing is concatenating two fields together. So, for example, I have this layout: Col1 Col2 Building A Room 101 Building B Room 2A Building C Room 301 ...
0
votes
1answer
17 views

Error in Querying Concatenation of 2 fields in LibreOffice Base SQL

My apologies for wrong terminilogies, I am not actually a programmer, just a Base user confronted with a problem. I'm having trouble querying a column which is supposed to be a concatenation of two ...
0
votes
0answers
5 views

.NET app with MS Access 2003 DB - Concatanate column

I'm trying to concatanate a column row values into one and seperate them with a comma. Since, I have a .NET app connected to a MS Access 2003 database, I can't use SQL Server functions or MS Acces ...
-2
votes
3answers
62 views

Concatenating a char into a string

I am trying to read a string from the console. But I want to read it char by char. And I'm having trouble with concatenating the char into the string AND with breaking the loop. Here is the code: ...
1
vote
3answers
40 views

Updating textbox value, more then once in webform asp.net

I am trying to update a textbox with a string. The string will be concatenated then will update the textbox with a click event. I can do this in a windows app, but when I try to do this in a asp.net ...
0
votes
1answer
18 views

Define a new variable by concatenation of two other variable names in VBS

I am writing a long script for two weeks ago and now due to the way whose it's written, I need to define a variable name by concatenation of two existing variable names. I don't want to concatenate ...
2
votes
3answers
55 views

concatenating Lists in R

I have written a function that it's output is a list. I want to put my function into a loop and I'd like to store output of each iteration (which is of course a list) into a bigger list. In other ...
2
votes
1answer
14 views

How can I replace the summing in numpy matrix multiplication with concatenation in a new dimension?

For each location in the result matrix, instead of storing the dot product of the corresponding row and column in the argument matrices, I would like like to store the element wise product, which will ...
-1
votes
2answers
32 views

Concatenating multiple results of a query in one row in Oracle

I have 2 tables with one having a reference to the first by id first table for example is customer having the fields id firstname lastname ------ --------- --------- 1 ...
0
votes
3answers
37 views

Javascript: cannot override concatenation

Using the following code I want to move a line with id='seekline' by var1 (less than .1 in most cases), but I run into trouble adding var1 and j. The plus sign concatenates instead of adding. I have ...
0
votes
1answer
29 views

Concatenate & minify directory of JS files into one JS file with Guard and UglifyJS

I have a folder of JS plugins that i would like to concatenate and minify into a plugins.js file using Guard and UglifyJS Here's what I have in my Guardfile so far guard 'uglify', :input => ...
-1
votes
3answers
57 views

How to remove error, probably caused by STRING VARIABLE with single quotes put in SQL statement ASP.NET C#?

my program errors when I put these set of numbers enclosed in single quotes ( string sql1 = "( 11111111111111, 222222222222 )"; ) into a string variable and use that variable in an SQL ...
1
vote
3answers
63 views

Concatenation with 2 strings

I've seen methods of doing this with "strcopy" and "strcat", but I'm not allowed to use any predefined string functions. I'm given: void str_cat_101(char const input1[], char const input2[], ...
0
votes
3answers
43 views

how to concatenate two strings in iphone

In this Code here i am sending Code number and phone number seperatly, i have two textFiedls phone code number field, and phone number field, but i want to concatenate code number and phone number ...
6
votes
1answer
91 views

Clojure: Idiomatic Way to Insert a Char in a String

I have a string in Clojure and a character I want to put in between the nth and (n+1)st character. For example: Lets say the string is "aple" and I want to insert another "p" between the "p" and the ...
2
votes
2answers
46 views

Concatenate a large number of files line for line in python

thanks for lending your eyes here. I'm processing some spectral data that is in the form of several hundred text files (1.txt,2.txt,3.txt ...) and they are all formatted with the exact same number of ...
-3
votes
6answers
84 views

C++: How to concatenate a variable between strings literals?

I need a way to get this PHP behaviour in C++: $foo = "PHP"; $bar = "this is a " . $foo . " example."; Is there something close to that, or do I have to do lots of strcat?
0
votes
3answers
38 views

Echo with parameters and without?

I know the following three statement will prodcue the same output: echo "Hello" . "World! <br/>"; echo "Hello"; echo "World!", "<br/>"; echo "Hello", "World!", "<br/>"; But what ...
-2
votes
4answers
74 views

PHP - concatenate string from database [closed]

i have string to send email registration. this string is stored in database. when i load the string with my model. //string from db Hi {$email} , bla bla bla my controllers example. some ...
4
votes
1answer
71 views

Concatenate elements of a list

I have a list like l=['a', 'b', 'c'] I want a String like 'abc'. So in fact the result is l[0]+l[1]+l[2], which can also be writte as s = '' for i in l: s += i Is there any way to do this more ...
0
votes
1answer
24 views

Python “builtin_function_or_method” Error

I have a problem writing files - I want to write in bytes, so I made a code: read_file = open(data,"wb")#data is the path of the file new_file.write(read_file.read) read_file.close It throws me ...
-6
votes
1answer
35 views

Algorithm for taking elements from an in[] array and concatenating them [closed]

I need all the elements in an int[] array to be concatenated together, but come out as an int instead of a string. For instance: I have an array: int[] array1 = {1, 2, 7, 16}; I need to smush all the ...
2
votes
2answers
41 views

Is it possible to AND two separate lookaround/zero-width assertions (i.e. lookbehind/look-behind) in a regular expression?

I'm using Perl for this regular expression question, but it would be good to know if it applies to PHP, as well. I need to comment out all print statements or all things that start with print in a ...
1
vote
2answers
45 views

Concat String with variable value to form New Variable

I have to make dynamic variable which store different value as given in pseudo code for(i in 1:30) "Day"+i <- sqldf("select * from call_details where day ="+i) Is it possible in R or not and if ...
-1
votes
0answers
30 views

PHP URL and Variable Concatenation Order reversed [closed]

Hoping somebody has seen this before, I am attempting to concatenate a variable to the end of a url variable, but for some reason within my script it is placing the ending variable at the beginning. ...
0
votes
2answers
17 views

Building Large Number from JSON

At the moment I receive JSON with objects. Each object has 4 strings which contain 3 digits. I need to construct a large number from those digits. For example if the digits are "111", "222", "333", ...
0
votes
1answer
69 views

SQL Server 2008 - field to concatenate strings

I'm running the following script, but the concatenated field is returning the incorrect values. select customer_no, card_no, count(*) as no_trans, stuff((select ',' + CAST(trans_id as varchar(20)) ...
1
vote
2answers
26 views

Limiting a String to 2 lines in android, then cut it and concatenate a String

My question may sound a bit weird but I'll try to explain it better here. I ahve a TextView in android, at the inferior part of my activity. I want to have it limited to 2 lines, which is easily ...
0
votes
1answer
17 views

Javascript: Error in String Concatenation

So I have this javascript function: function show_courseline (course_index, repeats) { var s = ""; var count = 0; while (count < repeats) { s = s + 'Number: ' + ...
1
vote
3answers
91 views

Group and Sum With Select Many C#?

I have an incoming array with a count per row and a string which represents one or more key's split by underscore. for each key I'd like to group and sum the total where if the key appears in a row ...
0
votes
1answer
40 views

get result seperated with commas in one row

this is the query i wrote: select d.canonical_name, l.locale_id, d.domain_id, ld.display_name, p.canonical_name as Identity_Set from locale_domain ld join domain d on ...
3
votes
3answers
66 views

Concatenate vector elements in groups

What is the most elegant way of converting list1 to list2, and also list2 to list1? list1<- c('a','b','c','d','e','f','g','h','i') list2<- c('abc','def','ghi') i.e: contactenate elements in ...
1
vote
1answer
55 views

Merge multiple css rules of a class into a single class declaration?

I like it to separate different concerns of a class in css. Example: // Layout .myElement { width: 100px; height: 100px; margin: 10px; padding: 5px; } // Chrome .myElement { ...
2
votes
3answers
37 views

Excel Formula with concatenate

I am trying to generate a customer number using the first three letters of the customers last name, the first name initial and middle initial, followed by the last four of their phone number. How ...
-1
votes
1answer
34 views

I need to concatenate two elements of an unsigned char array into and keep it unsigned char

I have unsigned char array[8] and I want to make another unsigned char array, which has 4 elements, for example new_array[4]. Its elements have to be like that: new_array[0] - concatenation of ...
0
votes
2answers
18 views

NSString not concatenate

I need to generate big XML file. So i create this code int n = 6; NSString *carString = @" \n"; for (int i=1;i<=n;i++){ for (int j=1;j<=n;j++){ if (j!=i){ ...
1
vote
1answer
71 views

Changing the data in URL strings - Using API for database requests

Using an API I am creating a forum using Javascript. When a user clicks on the thread title on the index.html page they are taken to a page called thread.html on here I am using an API call to ...
0
votes
4answers
52 views

Jquery concatenting very simple counter with a Variable [closed]

Following another question, I have a working script to create dynamic form fields : FIDDLE I thought I will figure out the rest, but I do not understand why when I try to assign a new name and ID ...
-1
votes
2answers
41 views

concate exculding NULL variable [closed]

I have several variables, which i receives from upon entry in one of my form via multiple select options. Total 4 select options are available which user can select maximum all or else he can select ...
0
votes
2answers
42 views

How to concatenate the echo of an array as expressed through a foreach loop?

I'm trying to create a variable that prints strings that are concatenated with results that are pulled from an array with a foreach loop, but every time I add on the actual array, I get a server ...
2
votes
1answer
53 views

Concatenating dictionaries of numpy arrays of different lengths (avoiding manual loops if possible)

I have a question similar to the one discussed here Concatenating dictionaries of numpy arrays (avoiding manual loops if possible) I am looking for a way to concatenate the values in two python ...
-5
votes
0answers
46 views

Java Manipulate an arraylist of strings ( split it in half and the concatenate) [closed]

In java how would you manipulate an arraylist of characters of a string and split it in half. I have to write a program where there are two arraylists and after splitting each in half ( length/2) you ...

1 2 3 4 5 31