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.
0
votes
1answer
21 views
sql - concatenating case statements
I want to do something similar to:
SELECT
('['+twt.dept+']' +
CASE WHEN twt.typ <> 'EMPTY' AND twt.typ > '' THEN '-['+twt.typ+']' END
+ CASE WHEN twt.subtyp_1 <> 'EMPTY' ...
0
votes
1answer
18 views
Awk: Cannot concatenate strings
I'm currently dealing with AWK, and I have three variables I work with:
$0 variable - for this example it's equivalent to:
path/filename.cpp LOG_ERR << "error in this log" << e.what();
...
0
votes
1answer
20 views
Powershell array values, concatenating data
This is kind of a painful question to ask, but here goes. I'm creating a powershell script to report on filer shares that are on a netapp. I've gotten to the point where I can create my report of all ...
2
votes
1answer
27 views
General behaviour of concatenation
I am trying to run pdflatex as a system call from a Perl script.
Like said in Using system() one should execute an external programm with system("command", "arg1", "arg2", "arg3"); to run it directly ...
0
votes
3answers
42 views
concatenate a string and a null character
I am completely new to java, and I am trying to join to string together with a null character between them.
String header = "text 19"
String content = "this is the content"
String wholething = // ...
0
votes
0answers
5 views
Excel Hyperlink with Concatenate or Indirect
How does Excel Hyperlink formula work with either Concatenate or Indirect formula inside? Thank you,
=HYPERLINK(CONCATENATE("'[Purchase Order Template1.xlsx]PO Mgmt ...
2
votes
3answers
32 views
Proc SQL and removing duplicates by a single variable
PROC SQL newbie here - I want to use Proc SQL to concatenate (stack) ID and Race data from two different datasets, while also removing duplicates by ID only (and NOT by both ID and Race) - is this ...
0
votes
0answers
16 views
Concatenated Alexa Certify Code
I currently have a lofty goal of getting all ( or at least most ) of our javascript and css concatenated and minified into an external file for our site.
Alexa tracking is giving me a bit of a ...
0
votes
1answer
15 views
Concatenated field from query populated in another field in a table
I am new to Access and I am using Access 2013. I have a table called Employees which has the employees First_Name, Last_Name and then a Combo Box that is going to have the Full_Name. I have a query ...
0
votes
1answer
25 views
String concatenation in awk
Consider the following text file (test.txt) :
1 1 1
7 7 6
and the awk script (test.awk)
{
print "$0 : ", $0
lines=(lines $0)
print "lines : ", lines
}
Then running:
awk -f test.awk ...
1
vote
1answer
14 views
Fastest way to concatenate two JS uint8 arrays to a uint16 array?
I know this is fairly easy in other languages, but what is the best way to do this in JS if I have two arrays of 8-bit unsigned integers, and would like to concatenate them to one array of unsigned 16 ...
0
votes
3answers
32 views
SQL syntax: Concatenating multiple columns into one
I am using PostgreSQL 9.2. I need to copy the addresses (which are split across multiple columns) from this table entitled houses:
house_id | unit_number| street_number | street| street_extension| ...
0
votes
3answers
37 views
how to concatenate two array element values in php by special charcter?
i have two arrays given below
Array
(
[0] => 2013-07-09
[1] => 2013-07-16
[2] => 2013-07-23
[3] => 2013-07-30
)
Array
(
[0] => 2013-07-16
[1] => 2013-07-23
...
1
vote
1answer
21 views
SQL One-To-Many return & group by search condition
Hello again beloved overflowers, I hope we have some brains available for the picking; as always it's greatly appreciated! :)
I have an Events table, which can be assigned multiple categories (used ...
0
votes
0answers
17 views
embed image in mail body by using swiftmailer
I'm trying to send an email by using SwiftMailed in PHP. The email is created before in a form type and saved into the database. The column type to store the content information is in TEXT type. The ...