0
votes
2answers
141 views
Concat field value to string in SQL Server
I need a similar function to Oracle WM_CONCAT in SQL Server, which returns a comma separated list of whatever field you pass it as argument. For example, in Oracle,
select WM_CON …
1
vote
1answer
95 views
Concatenating strings in macros - C++
What's the easiest way to concatenate strings defined in macros.
i.e. The pseudo code I'm looking for would be like:
#define ROOT_PATH "/home/david/"
#define INPUT_FILE_A ROOT_PAT …
1
vote
1answer
13 views
How can I concatenate set of results in MySQL?
I would like to join results returned in the set in MySQL with a comma as a separator string.
For example, set returned contains:
COLUMN_X
john
jerry
maria
joseph
gugla
I would …
6
votes
8answers
3k views
php String Concatenation, Performance
In languages like Java and C#, strings are immutable and it can be computationally expensive to build a string one character at a time. In said languages, there are library classe …
-1
votes
2answers
288 views
How can I concatenate two arrays in C? [closed]
Possible Duplicate:
How do I merge two arrays having different values into one array?
How do I concatenate two arrays to get a single array containing the elements of both …
0
votes
4answers
155 views
Unable to put a .txt -file to the end of another .txt -file
How can I put .Txt file A at the end of .Txt file B in terminal without opening the files?
0
votes
4answers
114 views
Concatenating 2 2D arrays in java?
I've got 2 2D arrays, one int and one String, and I want them to appear one next to the other since they have the same number of rows. Is there a way to do this? I've thought about …
0
votes
3answers
71 views
PHP Concatenation becomes NULL
When I run this code, About half-way through the concatenation loop, $xml becomes null and remains null throughout the rest of the concatenation loop. Has anyone else ran into thi …
33
votes
19answers
18k views
How to concatenate two arrays in Java?
I need to concatenate two String arrays in Java.
void f(String[] first, String[] second) {
String[] both = ???
}
What is the easiest way to do this?
7
votes
2answers
92 views
Combining registers in vim
Is it possible to combine registers in vim? For example, if I have registers "a, "b, "c, can I easily create register "d which is a concatenation of all three? That is, without pas …
0
votes
1answer
199 views
Concatenating rows from different tables into one field
Hi!
In a project using a MSSQL 2005 Database we are required to log all data manipulating actions in a logging table. One field in that table is supposed to contain the row before …
1
vote
2answers
152 views
Creating C macro with ## and __LINE__ (token concatenation with positioning macro)
I want to create a C macro that creates a function with a name based
on the line number.
I thought I could do something like (the real function would have statements within the bra …
1
vote
6answers
244 views
PHP Function to Join Strings?
join_strings(string $glue, string $var, string $var2 [, string $...]);
I am looking for something that would behave similar to the function I conceptualized above. A functional e …
-5
votes
2answers
64 views
Get specific data from a string? C#
I have a string named group.
string group="|17|11|";
So my issue is that I want my output to be something like this:
17
11
so these 2 numbers should be stored in the database …
2
votes
6answers
77 views
Benefits of MessageFormat in Java
In a certain Java class for a Struts2 web application, I have this line of code:
try {
user = findByUsername(username);
} catch (NoResultException e) {
throw new UsernameN …
