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. In Java it joins 2 or more arrays into one.

learn more… | top users | synonyms

0
votes
2answers
36 views

Why can't I concat an array reference in JavaScript?

I have two arrays, one comes as a reference (parameter) from a function, and the other is created as part of the function - exactly the same scenario as described here: Add two arrays without using ...
0
votes
0answers
20 views

concat ienumerable with variables or values

I have a Linq like this: var sales = (from ltd in DB.Sales select vendor, totalsales); now I want to insert a new record by the end, sales = (from ltd in DB.Sales select vendor, ...
0
votes
1answer
17 views

MySQL subquery within LIKE CONCAT

I'm trying to create a query that checks an inserted value against a field. I'm trying to accomplish this using a sub-query, but got stuck. What I'm trying to accomplish: (message1) User1 says: Hello ...
0
votes
1answer
51 views

More than 2 columns in a CONCAT function

In SQL Server 2012 I want to concat 5 columns into 1 but in the query it works but when I put in in a view it gives me an error like Msg 174, Level 15, State 1, Line 3 The CONCAT function ...
0
votes
1answer
38 views

Mysql concat and search on multiple tables

I have 2 tables, products and categories defined as this: Table: categories - category_id, category Table: products - product_id, category_id, item_no, description I'm trying to concat the ...
-1
votes
0answers
18 views

Is there any limit for concat demuxer parameters number? [closed]

I am trying to join .mp3 files with ffmpeg, using this syntax ffmpeg -i "concat:input1.mp3|input2.mp3|input3.mp3" -c copy output.mp3 but when I have a large number of parameters it doesn't work. ...
0
votes
0answers
11 views

Concat videos with ffmpeg does not work [migrated]

I'm currently trying to concat 3 Videos which don't have a audio stream and adding a audio file in the same step. I created this command which should do the work: ffmpeg -y -r 30 -i data\intro.mp4 ...
0
votes
1answer
23 views

XSLT How to use “line” char ('-') as parameter

I have implemented this function (template): <xsl:template name="insSepToFechaHost"> <xsl:param name="fecha" /> <xsl:param name="sep" /> <xsl:variable name="anio" ...
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 ...
1
vote
1answer
33 views

SQL Join Duplicate Results

I've been learning SQL to a slightly more advanced degree than usual, and I am a little bit stuck on this one. The query is to get all of the airports that an airline flies to (destinations) from a ...
0
votes
1answer
41 views

Joining Multiple Tables And Merging Data in MySQL

I have four tables I want to join together, but one table I want to group_concat two specific records. Product_to_category PC P_ID C_ID 1 1 2 2 2 3 1 3 Product P P_ID P_PRICE 1 ...
0
votes
1answer
39 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 ; ...
0
votes
1answer
23 views

AS3 combining strings

I am trying to make a program combine two strings to make a name... My code is function addStudent(evt: MouseEvent) { var tempFirst = newStudent.firstName.text; var tempLast = ...
0
votes
1answer
43 views

Oracle CONCAT from another table

UPDATE table1 t1 SET t1.value_1 = CONCAT(t2.value_2,t1.value_1) WHERE t1.id = t2.t1_id AND t1.id = '0123'; Can anyone help with how I do something like the above query? Basically I need to take ...
0
votes
0answers
12 views

How concat multiple TextRange object to RichTextBox?

I have multiple object, of TextRange type. Something like this: Change color and font for some part of text in WPF C# But I can't concat them....I need concat to assign to the DataContext ...
0
votes
1answer
26 views

concat sql query > show same column in 2 differents columns according to where clause

I wish to make a connection between two sql queries showing the same field in two different column in a "WHERE" clause as shown in the following example: Query n° 1 : SELECT COUNT([ID]) AS ...
0
votes
1answer
36 views

SQL query with CONCAT LIKE AND

I have an query like this: SELECT * FROM `tbl_shop` WHERE (LOWER (CONCAT(address, name)) LIKE (LOWER ('%boston%')) AND LOWER (CONCAT(address, name)) LIKE (LOWER('%smoke%'))); My question is ...
0
votes
2answers
47 views

XSL combining values of siblings if values of an attribute is same

This is how my XML looks like <?xml version="1.0"?> <Nodes> <NodeA NodeAattr="123"> <NodeB NodeBattr="456"></NodeB> <NodeC> <NodeD ...
0
votes
2answers
41 views

Query two table and concat the table value in MySQL

Refer to below table article and article_image TABLE article id a_id title 1 1 abc 2 2 def 3 3 ghi 4 4 jkl 5 5 mno TABLE article_image id a_id image 1 1 a.jpg 2 1 ...
0
votes
3answers
74 views

updating mysql field with variable not working

So I am using CONCAT to combine 2 strings together and want to update a TEXT field in my database by adding a new string onto the end of the existing string. // This code works great. will add ...
0
votes
0answers
31 views

Rake-pipeline: Concat task not working as expected

I have a folder which contains all the third party libs which I use for my client namely: jquery-1.9.0.min.js handlebars.js ...... etc I have written a task to concat all these files into one ...
1
vote
1answer
92 views

SQL Server - Group by with multiple joins and strings

I have searched many similiar topics but am still struggling to get this working. I am trying to group on one column in particular after doing a few table joins. Any help wouldbe greatly appreciated ...
2
votes
3answers
51 views

SELECT WHERE IN query using text string

I've had a bit of a look around, and tried a few things, but I can't seem to get this to work... Can anyone help? $typeall = " ('House','Condo','Loft','Townhouse','Land')"; $rs = mysql_query("SELECT ...
0
votes
6answers
156 views

C++ Concating strings result in “invalid operands of types ‘const char*’ and ‘const char”

I want to concat two strings but i get error that i don't understand how to overcome this error. Is there some way to convert this const char* to char? Should i use some dereferencing? ...
0
votes
2answers
26 views

MySQL concat - within custom function - not working

I try to do this CREATE FUNCTION getOneCentOrderIds (s text) RETURNS text BEGIN DECLARE no_more_orders, ent_id INT default 0; DECLARE ids text; DECLARE orders_cur CURSOR FOR SELECT ...
1
vote
2answers
49 views

SQL error in concat with two subqueries

I am trying this code. However i am getting a syntax error. What is the correct way? UPDATE Classificacao AS C SET C.ClassificacaoCPV_id = ( SELECT CONCAT( SELECT ClassificacaoCPV FROM ...
1
vote
1answer
108 views

Rails nested list with concat content_tag in Helper

I'm trying to create something similar to this: Using helpers in rails 3 to output html Here's my helper: def section_references_to_html (section) concat content_tag (:ol, :class => ...
0
votes
3answers
102 views

MySQL CONCAT returns NULL if any field contain NULL

I have following data in my table "devices" affiliate_name affiliate_location model ip os_type os_version cs1 inter Dell 10.125.103.25 Linux ...
0
votes
6answers
330 views

C - Concat Strings

Trying to concat strings (*char) using C and having a lot of segmentation faults: void printDateFormat( char *in ) { /* begin function printDateFormat */ char *month; // month by char ...
-1
votes
3answers
40 views

missing ) after argument list “+” on response.write in JS [closed]

response.write('Your case has been submitted successfully and you should receive an email notification soon.<br><br>The Case# is"+caseId+"<br><h2>title</h2>'); Works ...
0
votes
3answers
160 views

How to Add integer column to an String column in MySQl 5.0

I Want to add an Integer Column to a String that's because i need to generate a varchar variable with a numeric part that automatically increments. For example, P000001,P000002... In order to do that ...
-1
votes
1answer
83 views

MySql query syntax issue within prepared statement with regexp + concat

I am revisiting my old fashion mysql related codes and converting them to prepared statement forms.The query below was working properly. $sorgu = "SELECT * FROM tb_yazilar WHERE kolon_etiketler ...
1
vote
2answers
56 views

String.Concat with non-string arguments, unexpected behaviour

As a summary: I'm trying to get String.Concat to use a reference type's ToString overload when sticking string together. Edit: Added this overview: The example code below is a cooked down extract of ...
1
vote
1answer
156 views

Shifting 2D array Verilog

I dont know what doesnt work on the following code, but it wont synthesize: reg [7:0] FIFO [0:8]; always@(posedge clk) begin if(wr & !rd & !full) begin FIFO[0:8] <= {data_in, ...
0
votes
1answer
25 views

Set a variable's value depending on result from the function - MySQL

I have this query -: SET @var = ''; SELECT * FROM dict WHERE checkWord(word) = 'yes'; When the result from the checkWord() function is other than 'yes' i.e. when its 'no', i would want concat the ...
0
votes
2answers
95 views

SQL Server scalar function returns VARCHAR truncated

I created a scalar function in SQL Server 2008 R2 that returns a varchar (4000). This varchar (4000) is the result of concatenating multiple rows and multiple columns of a table. I will use this ...
0
votes
0answers
39 views

find string and replace mysql

This is my current table : +----+------------------------+ | id | data | +----+------------------------+ | 1 | [20130321] | | | ...
0
votes
1answer
27 views

replace string inside the table sql

i got some problem about replacing string inside the mysql table with some requirement. You can see my current table : +----+------------------------+ | id | data | ...
0
votes
1answer
39 views

How do I run a CONCAT on query stored in a database

I know this is a bad example but I'm trying to simplify things so bear with me in the round-about way this code is written. Say I have queries stored in a database such as queries table id query ...
0
votes
0answers
48 views

C: sYSMALLOc failure in string concatenation (worked up until now)

I've been building a compiler and utilizing a concat function that has worked up until now, and I can't diagnose why. It seems to be failing on the concat statement I put an arrow by //using ...
0
votes
0answers
56 views

MySQL RegEx Huge Search

I have a database with products that gets updated weekly with now products. Each product has a column for UniqueID, Supplier, Date Added, Product Number and ReplacementID. When a product is updated it ...
0
votes
2answers
39 views

Get dynamic column value

I have a table student that contains : student_id , prefered_cell , cell_1 , cell_2 , cell_3 now under prefered cell values we have (cell_1,cell2,cell3) what is the best way to get the value of ...
-1
votes
4answers
339 views

sql query to concat 2 rows of the same column

I have the following table Tble : Name | Level -------------- n1 | L1 n1 | L2 n2 | L1 n2 | L3 n3 | L1 n4 | L3 How can I write a SQL query to output like that ? Name | ...
0
votes
3answers
50 views

SQL like on concatted field?

Is it possible in mysql to make select and search on concatted field? This is example: SELECT concat(members.name, " " ,members.surname) AS i FROM members where i LIKE '%string%'
1
vote
1answer
25 views

Javascript prototype scoping and recursion issue

So I think I've fallen off a cliff in the javascipt scoping and prototype area. I'm attempting to build a simple tree structure out of objects. building the tree is no issue, but when I try to get all ...
-4
votes
1answer
107 views

concat a char 2D array element and int in C++

I have a 2D char array, static char a[25][25]; Consider the matrix filled with numbers. main code: for(i=0;i<25;i++){ if(a[pos][pos]!='0'){ strcpy(result,(char)i); ...
0
votes
1answer
13 views

selecting concat with the %-Tag exculding one character

I like to select all rows from the table which end with any characters after the beginning abc. I can do this with this %-Tag. Now I want to select the same, all characters after the 'abc' but not the ...
0
votes
1answer
90 views

MySql - concat in query with left outer join

I don't get it. I've tried: SELECT table1.name, CONCAT( country, '.', id ) AS table1.code, table2.name FROM tabel1 LEFT OUTER JOIN table2 ON ( table1.code = table2.code ) I need to combine ...
2
votes
1answer
190 views

Why does this Selenium XPath expression fail to return results when concat() is used?

When I use the following XPath expression in Selenium, it works correctly. Its finds an ancestor div of the current element which contains a certain string in its class attribute: ...
0
votes
2answers
36 views

MySql concat and quotes

I am trying to do something like this: <td>style="background:url('myimage.jpg') no-repeat;"> + column + </td> But I get a MySQL error when trying: Concat ...

1 2 3 4 5 8