0
votes
4answers
66 views
How do I concatenate a string in a PHP Array Element?
I am customizing wordpress blog and I have a need to make custom sidebar widgets. My PHP is rusty at best. What I am trying to do is concatenate a php variable into a string bein …
1
vote
4answers
74 views
C# Compile-Time Concatenation For String Constants
Does C# do any compile-time optimization for constant string concatenation? If so, how must my code by written to take advantage of this?
Example: How do these compare at run tim …
3
votes
3answers
170 views
How to efficiently concatenate strings in Go?
In Go, string is a primitive type, it's readonly, every manipulation to it will create a new string.
So, if I want to concatenate strings many times without knowing the length of …
2
votes
4answers
109 views
Merge JavaScript objects
I've read another similiar question on SO but there wasn't a clear answer at that question.
I got some JavaScript objects that look like this:
var moveJSON = {
'name' : move …
1
vote
5answers
135 views
Why does this map return a single number?
Hello! I am trying to cut down on the number of code lines I am using but am ending up with a fairly simple problem (although it's stumping me since I am just starting to wrap my h …
0
votes
3answers
108 views
Android - String concatenate - how to keep the spaces at the end and/or beginning of String ?
I have to concatenate these two strings from my resource/value files:
<string name="Toast_Memory_GameWon_part1">you found ALL PAIRS ! on </string>
<string name="Toa …
1
vote
2answers
90 views
Easy way to concatenate list of strings into a comma-separated strings, where strings are members of an object?
Say I have a List(Of Tag) with Tag being an object. One member of Tag, Tag.Description, is a string, and I want to make a comma-separated concatenation of the Description members. …
0
votes
2answers
48 views
Simple String and variable problem using jQuery
I'm trying to add my var to this string:
var liPad = 20;
$(this).css({'width' : width , 'height' : height, 'padding' : "'0px' + liPad + 'px'"});
To make it work like this:
$(t …
2
votes
4answers
109 views
What string concatenation method to use for N number of iterations?
Hi!
If I want to concatenate a string N number of times, which method should i prefer?
Take this code as an example:
public static string Repeat(this string instance, int times) …
0
votes
3answers
100 views
Linq Aggregate complex types into a string.
I've seen the simple example of the .net Aggregate function working like so:
string[] words = { "one", "two", "three" };
var res = words.Aggregate((current, next) => current + …
0
votes
1answer
139 views
SQLite Update Syntax?
I think is is simple, but I'm not getting it. I have a table with this data
id , name , description
1 , apple , ''
2 , orange , ''
I am trying to pass the following statement to …
2
votes
4answers
256 views
XPath to return string concatenation of qualifying child node values
Can anyone please suggest an XPath expression format that returns a string value containing the concatenated values of certain qualifying child nodes of an element, but ignoring ot …
2
votes
2answers
136 views
Ternary operator and string concatenation quirk?
Hi I just want to know why this code yields (at least for me) an incorrect result.
Well, probably i'm in fault here
$description = 'Paper: ' . ($paperType == 'bond') ? 'Bond' : ' …
3
votes
3answers
128 views
What is the difference between VBScript’s + and & operator?
On every site that talks about VBScript, the '&' operator is listed as the string concatenation operator. However, in some code that I have recently inherited, I see the '+' op …
1
vote
3answers
303 views
Merge two JSON objects programmatically
I have two JSON objects here, generated through the Google Search API. The URL's of these objects can be found below.
http://ajax.googleapis.com/ajax/services/search/web?v=1.0& …
