Tagged Questions
-4
votes
2answers
33 views
Convert result from PDO::fetchAll() to array like [closed]
I have a list of names from my database.
I'm trying to convert the result from the PDO::fetchAll() function to get a result like a string:
"name1","name2","name3" etc.
I don't know if you know what ...
3
votes
3answers
202 views
Understanding strings and arrays
Consider this code.
int main()
{
char *s, *t;
s = malloc(4 * sizeof(char));
strcpy(s, "foo");
t = s;
printf("%s %s\n", s, t); // Output --> foo foo
strcpy(s, ...
0
votes
1answer
65 views
Populate java.awt.list from String Array
I am trying to populate my java awt list from a string array.
The string array gets the values from a .csv file. (Timezones)
e.g
Australia,Melbourne
Australia,Sydney
Europe,London
Note: There are ...
-1
votes
5answers
58 views
In Java, how do I initialize an array of strings? [duplicate]
What I want to do is initialize an array of strings and then fill each space with a different string, like so:
int year = 1995; //the current year i'm working with
String[] Year; ...
0
votes
4answers
55 views
C - Static array of structs with string member not properly initialised?
Alright, so here goes. I am trying to do a switch over a string value in C, as described here. However, the array of structs does not seem be initialised properly. My (simplified) program looks as ...
0
votes
1answer
23 views
Merge Sort in String using LinkedList
I used LinkedList as a dymanic array then this array contains strings that need to be sorted in alphabetical order by using merge sort algorithm, which is added in the method and it turned out not ...
0
votes
4answers
55 views
How to store php array to text
i have php array like this.
$config['sample'] = array( 'key1' => 'val1', 'key2' => 'val2' );
and i want value in $config['sample'] to write in to text file like this.
$newcfg['sample'] = ...
-1
votes
0answers
58 views
How %s format conversion work in C? [closed]
Suppose I write a code like this:
char *arr = "Hello World";
printf("%s", arr);
As I know, it prints the whole string by traversing character by character until a NUL (\0) character is found. ...
-1
votes
1answer
49 views
C Programming. Comparing an array's contents.
I have an array as result of my program's input:
//1.
int i, numberOfOccurances;
for(i = 0; i < numOfOccurrances; i++) {
printf("%d",PrintOccurrances[i]);
}
and as an example ...
-5
votes
1answer
84 views
How to get highest/lowest integer in a ArrayList<String> ? [closed]
Basically, Iv'e loaded a document into Java, put all of it into a string arraylist, now I want it to find the highest registered integer inside of it, and the lowest registered integer. Iv'e been ...
0
votes
4answers
70 views
what is the correct string terminator in c
As I know the string terminating character in c is '\0'.
can we use '0' as the terminating character too? when I assign 0 to a specific index in a char array, and then use printf, it prints only upto ...
1
vote
2answers
26 views
Parsing JSON to Array Map Produces “The local variable may not have been initialized”
I'm currently following this tutorial ( http://mobile.dzone.com/news/android-tutorial-how-parse ) how ever // add items from doddataitemObj to dataitem string - String PUBLICEVENTTYPE = ...
0
votes
1answer
35 views
Odd Java String[] error
I have this line of code:
String[] projection = {MediaStore.Audio.Media._ID, MediaStore.Audio.Media.ARTIST,
MediaStore.Audio.Media.TITLE, MediaStore.Audio.Media.DATA,
...
2
votes
1answer
75 views
Working with arrays on Arduino in C++
I'm trying to manipulate arrays, but I'm a little confused with I need to do. I want to do something like:
char myArray[10];
myArray[0] = 0xA9;
myArray[1] = 'D';
myArray[2] = 'S';
myArray[3] = ...
0
votes
4answers
29 views
How to use PHP string endsWith to skip files from read? [duplicate]
I want to simple skip files with filename that ends with "@2x" and implement in this code:
$fullres = glob("gallery/*.*");
for ($i=0; $i<count($fullres); $i++)
{ ...
0
votes
2answers
44 views
Looping and processing string byte-by-byte in MASM assembly
I am using MASM assembly and I am trying to write a loop that processes the string str1 byte-by-byte, changing each lowercase letter into the corresponding capital letter using bit operations. If the ...
0
votes
2answers
56 views
C decimal to binary without arrays
I think I've almost got it, but I feel like I'm go in circles trying to figure this out.
The challenge to out cout without using strings or arrays. I took the number 56 as an example and 56 should ...
-1
votes
2answers
74 views
C++ Having trouble using std::find() to locate a string within an array
for a homework project I'm required to locate a string from an array. Now I've been trying to make the function work for the past hour and I'm just getting myself more confused. I'm pretty sure find() ...
7
votes
5answers
196 views
Why printf(“%s”,(char[]){'H','i','\0'}) works as printf(“%s”,“Hi”), but printf(“%s”,(char*){'H','i','\0'}); fails? [duplicate]
I really need help on this.It has shaken my very foundation in C.Long and detailed answers will be very much appreciated.I have divided my question into two parts.
A: Why does ...
1
vote
6answers
51 views
PHP converting Strings to Arrays back to Strings
I am pulling data from a query that has the following output:
1
2
3
5
I am converting it into an array like so:
$string = explode("\n", $result);
I know have an array displaying ...
0
votes
6answers
73 views
subtract integer from a string of integers
Suppose I have a string array as follows:
String[] str = {"2","4","5"};
Now I want to subtract 1 from each of its elements, ie, I want the string to be like this now:
str = {"1","3","4"};
...
1
vote
4answers
39 views
Display element of 2nd array whose suffix matched with 1st array
I have two arrays, i.e.:
array('ly', 'ful', 'ay')
and
array('beautiful', 'lovely', 'power')
I want to print the content of second array whose suffix matched with first array. i.e. the output ...
0
votes
0answers
41 views
My ByteArray to String Code doesn't work with Android
For normal Java developing, I use this code to convert a Byte Array to a String
StringBuffer sb = new StringBuffer();
for (int x = 0; x < uid.length; x++){
if (x > 0) {
...
0
votes
2answers
90 views
How to insert a String line into a String array in Java
I am having some difficulty with taking a String input from a user as shown in the code below, separating the tokens and shoving them into a string array. The input is recorded correctly however after ...
-4
votes
1answer
56 views
Problems with iphone development using string array [closed]
ok so I'm trying to build a simple view with a next and a previous button in the top right and top left. There is a textfield in the center where the text would be displayed from this text. For some ...
0
votes
1answer
41 views
Create specific format string from array - jquery
Its simple question
I have one jquery arrary
arry = [ 'apple=1', 'apple=2', 'orange=5', 'orange=7', 'orange=9', 'guava=12', 'guava=11' ];
I want to convert above array into string
str = ...
3
votes
4answers
96 views
How to use an Array with an If statement
I am new to Java. I'm not really sure how to effectively use an array in Java. I may not be able to use the correct terms so I will attempt to show you in code.
Basically, this is my array.
int[] ...
2
votes
2answers
74 views
How are char ** objects saved?
Today, I asked me, how char ** objects are saved in memory or in binary files. I tested that with the following code snippet:
char **array = (char *)malloc(3 * sizeof(char *));
array[0] = "Foo"; ...
2
votes
4answers
104 views
How do you convert a MAC address (in an array) to string in C?
How do you convert a MAC address within an int array to string in C? For example, I am using the following array to store a MAC address:
int array[6] = {0x00, 0x0d, 0x3f, 0xcd, 0x02, 0x5f};
How do ...
0
votes
3answers
45 views
Change array values to number from string
I have an array with these values:
var items = [Thursday,100,100,100,100,100,100]
I'm grabbing these from the URL query string so they are all string values. I want all columns except the first to ...
0
votes
3answers
55 views
Double array Strings interconnect in output - C Programming
I have this code:
#include <stdio.h>
int main(void) {
char p[5][5];
int i,j;
for(i=1;i<=1;i++){
for(j=1;j<=2;j++) {
printf("\nInput Product code %d of ...
0
votes
1answer
46 views
Checking two strings for approximate match in PHP
I'm trying to check approximately similarity of strings.
Here is a criteria that I use for that.
1) The order of the words is important
2) The words can have 80% of similarity.
Example:
$string1 = ...
-10
votes
4answers
83 views
Comparing outcome for a string and array in IF statement? [closed]
Is is possible to compare the values of the array to the values a user inputs?
String [] Array = {"1", "2", "31"}; //The array
String value= Integer.parseInt(textField.getText()); //the String
if ...
0
votes
2answers
27 views
Store several text_field strings to array Rails 3
I'm trying to store some strings from a couple of text_fields that i have into an array, and then save it to the DB.
I have a column named "opening_hours" wich I've tried to separate into 2 different ...
0
votes
0answers
16 views
Most effective way of displaying random string (with metadata) on click
So here's the breakdown of what I'm trying to achieve:
Medium: Web
To have a set (hardcoded) list of strings that can be called upon and displayed randomly (one by one, changing each time you ...
1
vote
3answers
42 views
PHP: remove empty array strings in multidimensional array [duplicate]
I have this array:
$aryMain = array(array('hello','bye'), array('',''),array('',''));
It is formed by reading a csv file and the array('','') are the empty rows at the end of the file.
How can I ...
0
votes
1answer
65 views
A string() as columns for SQL table
I have a csv file that I read in and I create it into a string(), now I want to input all of these into an SQL table.
It should become something like this:
TIME string(0) string(1) string(2) ...
...
1
vote
1answer
28 views
Declare and allocate memory for an array of structures in C
I'm trying to declare and allocate memory for an array of structures defined as follows:
typedef struct y{
int count;
char *word;
} hstruct
What I have right now is:
hstruct *final_list;
...
0
votes
3answers
34 views
Add String to Array, Stay as Array
I have two arrays:
$delete = array("Delete" => "Delete");
$folders = array("0" => "folder1","1" => "folder2");
$options = array_merge($delete, $folders);
How do I add "Move to " to ...
0
votes
5answers
61 views
convert a String to a multi-dimensional array
Context: I have converted an array into a string, then into bytes so that it can be stored as a blob in a database. I then want to retrieve the array. I retrieve the blob and retrieve the string from ...
1
vote
4answers
48 views
Java String array out of existing String array
I have a Java String array:
public static final String[] FIELDS_NAMES = { "Albert", "Berta", "Carl" };
public static final String[] FIELDS_NUMBERS = { "123", "456", "789" };
and would like to ...
0
votes
1answer
64 views
C++: Storing strings in linked list
(I've only used C++ recreationally, so forgive the noobish question.)
I want to write a simple spreadsheet program that works in the terminal (via ncurses). Mostly personal edification. I want to ...
0
votes
1answer
40 views
Differentiating String/Int User Input
I am having issues trying to type code that will make my program distinguish whether the user inputs a string value or an int value. If an int value is typed in, it will be stored into an array (named ...
0
votes
2answers
42 views
How do I randomly jumble a string imploded by ',' in PHP (ex: a,b,c = c,b,a) in a oneliner?
How do I randomly jumble a string imploded by ',' in PHP (ex: a,b,c = c,b,a) in a one-liner?
Here is an example
srand((double)microtime*1000000);
$foo=array(
a => "a",
b => "b",
c => ...
-2
votes
1answer
25 views
PhP Create array from huge string
I am retrieving a huge string from the WoW Armory API using:
$allAchievements = file_get_contents('http://us.battle.net/api/wow/data/character/achievements');
That returns this:
...
3
votes
4answers
63 views
C: intializing struct with an array of strings
I'm trying to do the following, but the compiler is complaining about brackets, however, I can't find my way to an alternative.
struct cards {
char faces[13][6], suits[4][9];
}
typedef struct ...
2
votes
1answer
64 views
How to convert string into an array?
I'm working with this page: ITEM INFO
and I turn the page into a string:
var info = document.getElementsByTagName("pre")[0].innerHTML;
The entire page is already in the format of an array, so is ...
1
vote
1answer
77 views
Compare variable with hundreds values
I pass a variable with a value of millivolts acquired by a microprocessor connected via serial port, to a class in my app.
The class has to compare the received value "milliV" to many values ...
3
votes
2answers
59 views
Using end() with explode() does not work
I have a string which will contain a file upload name, for example "image.jpg".
I'm trying to use the explode function but it's returning an error "explode() expects parameter 2 to be string, array ...
0
votes
2answers
43 views
Easy way of coding indices in large arrays and giving them values
Sorry I've only being coding for about a week and this question is probably very simple. I'm using Objective-C and I started learning about arrays and strings. I understand them but if I am making a ...






