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
4answers
52 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
26 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
12 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
51 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
25 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
35 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
22 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
41 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
60 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
41 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
90 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
45 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
78 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
67 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
69 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
33 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 ...
0
votes
2answers
39 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
25 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
57 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
21 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
15 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
85 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
39 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
53 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
33 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
16 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
70 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
51 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
37 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
52 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
43 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 ...
0
votes
1answer
21 views
Array Concatenate text and variable
I'd like to create an array as follows:
Dim vHdr As Variant
vHdr = Array("Jogo", "Sala", "Operadora", "Semana", "NSemana", "Acumulado Semana 3")
However, in "Acumulado Semana 3", the 3 is a ...
0
votes
0answers
71 views
add a string value before every column in a select * statement
I am trying to add 'HP' to the beginning of every result from my select statement.
I am currently using:
select 'HP'+column1, 'HP+'comumn1, etc.. from table
This works but I am doing this for ...
0
votes
2answers
44 views
How to concatenate all YES records into a single list?
How do I combine all "Yes" records into a single list? I have the following script that I would like to combine into a single varchar list, ideally using XML or a native SQL function. These values ...
1
vote
3answers
45 views
How to concatenate variable in string in javascript
I am using this
var abc = jQuery('#pl_hid_addon_name').val();
alert(abc);
var atLeastOneIsChecked = jQuery('input[name="addon-"'+abc+']:checked').length ;
alert(atLeastOneIsChecked);
But it not ...
3
votes
1answer
38 views
Semantics of turning list into string [duplicate]
Many programming languages, including Python, support an operation like this:
", ".join(["1","2","3"])
which returns the string
"1, 2, 3"
I understand that this is the case, but I don't ...
-3
votes
3answers
58 views
Why is the output to this code both 2?
public class Bird
{
private static int id = 0;
private String kind;
public Bird(String requiredKind)
{
id = id + 1;
kind = requiredKind;
}
public String toString()
{
return "Kind: " + kind ...
2
votes
5answers
51 views
php string number concatenation messed up
I got some php code here:
<?php
echo 'hello ' . 1 + 2 . '34';
?>
which outputs 234,
but when I add a number 11 before "hello":
<?php
echo '11hello ' . 1 + 2 . '34';
?>
It outputs ...
0
votes
2answers
52 views
How can we concatenate variables and add leading zeros in R?
Suppose I am interested in concatenating two variables. I start with a dataset like this:
#what I have
A <- rep(paste("125"),50)
B <- rep(paste("48593"),50)
C <- rep(paste("99"),50)
D <- ...
0
votes
2answers
50 views
How to join (without concatenating) two result sets of two fields together as one long ‘list’
What SQL Code do I require to perform the following? :
I have one table (lets arbitrarily call the table 'Names'):
ID | Name1 | Name2
---+--------+-------
1 | Fred | Jack
2 | Jack | Jim
3 | ...
1
vote
2answers
104 views
Longest string that can be made out of a list of strings
I'm looking for an efficient algorithm which will give me the longest string which can be made out of a list of strings. More precisely:
Given a file containing large number of strings, find the ...
1
vote
2answers
44 views
Adding records to a numpy record array
Let's say I define a record array
>>> y=np.zeros(4,dtype=('a4,int32,float64'))
and then I proceed to fill up the 4 records available. Now I get more data, something like
>>> ...




