Tagged Questions
0
votes
1answer
37 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 ...
-3
votes
1answer
53 views
How to get highest/lowest integer in a ArrayList<String> ?
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
66 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
20 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
34 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
44 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
28 views
How to use PHP string endsWith to skip files from read?
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
24 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
51 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
70 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
184 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
47 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
71 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
36 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
87 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
55 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
39 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
90 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
73 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
102 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
44 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
53 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
81 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
22 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
64 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
26 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
31 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
55 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
57 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
39 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
41 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
62 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 ...
1
vote
1answer
63 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 ...
0
votes
1answer
41 views
Ruby produce modified string from array
I have an array
["http://www.google.com", "http://www.yahoo.com", "http://www.weather.com"]
and I would like to produce one long string
<a ...
-3
votes
2answers
50 views
Perl - searching for partial matches in string array and returning matching indices
Suppose I have a string array @file_paths which contains
@file_paths= ["C:\Lazy\FolderA\test.cpp", "C:\Lazy\FolderA\test2.cpp",
"C:\Lazy\FolderB\test.cpp", ...
0
votes
2answers
38 views
read file and put to some arrays
I have like these lines in a file:
101 xxx 3 yyy
102 aaa 2 bbb
103 ppp 3 qqq
104 iii 5 jjj
I want to put each elements of each line in an array, for example
int[] par1 = {101,102,103,104}
String[] ...
2
votes
3answers
50 views
Declaration of an array of strings and selecting a single character
I am new to c programming and am trying to print on the screen which key of a keypad is pressed. I have the program to the stage where it prints the row and column number of the key that was pressed. ...
3
votes
3answers
37 views
Elegant way to force two array elements when splitting a string
Assume the following string:
$string = 'entry1_entry2';
What I want to do is something like this:
list($entry1, $entry2) = explode('_', $string);
My question now is are there any elegant ways to ...
2
votes
10answers
176 views
How to memcpy() from argv[]?
I want to copy string from argv[0] but I don't know how to get the size of argv[0].
How to do this?
int main(int argc, char* argv[])
{
char str[20];
if(argc>0)
memcpy(str, argv[0], ...
2
votes
1answer
912 views
Word Array to String
how to do this in Javascript or Jquery?
Please suggest in 2 steps:
1.- Word Array to Single Byte Array.
2.- Byte Array to String.
Maybe this can help:
function hex2a(hex) {
var str = '';
...
18
votes
5answers
23k views
PHP: Split string into array, like explode with no delimiter
I have a string such as:
"0123456789"
and need to split EACH character into an array.
I for the hell of it tried:
explode('', '123545789');
But it gave me the obvious: Warning: No delimiter ...





