Tagged Questions
The string-building tag has no wiki summary.
5
votes
4answers
2k views
Building a directory string from component parts in C#
If i have lots of directory names either as literal strings or contained in variables, what is the easiest way of combining these to make a complete path?
I know of Path.Combine but this only takes 2 ...
3
votes
4answers
157 views
What problem does the StringBuilder solve?
Why would I use a StringBuilder over simply appending strings? For example why implement like:
StringBuilder sb = new StringBuilder;
sb.Append("A string");
sb.Append("Another string");
over
...
2
votes
9answers
75 views
PHP function to add data to string
My code:
$myText = "";
function addText($textString){
$myText .= $textString;
}
addText("Hello there...");
echo $myText;
Expected output:
Hello There...
$myText was empty.
Why does ...
0
votes
3answers
34 views
Building a query string based on variable values. Where is the mistake?
I am trying to create a query string based on GET values passed to common vars:
if isset, gTipo = $_GET['tipo'] and others like this.
So, here is the code that is not working:
$sqlLista = ...
0
votes
2answers
299 views
Building an Evironment Variable with SET using a FOR loop in Command Prompt
I am having trouble with the following command prompt commands (in Windows XP).
set SOMEVAR=
for /F %i in (1 2 3) do set SOMEVAR=%SOMEVAR% "%i"
echo %SOMEVAR%
I expect it to build the ...
0
votes
3answers
168 views
Building a Query From a List of Strings
How would you take an arbitrary list of strings (of the form "%[text]%") and a database column, and turn them into a SQL query that does a LIKE comparison for each string in the list?
An example: I ...