Tagged Questions
3
votes
7answers
115 views
How to parse a string and return a nested array?
I want a Python function that takes a string, and returns an array, where each item in the array is either a character, or another array of this kind. Nested arrays are marked in the input string by ...
0
votes
1answer
23 views
NSARRAY JSON empty
i'm trying to download some data from a mysql server, i would like to use JSON to parse the result of a query.
This is the PHP
<?php
class Prenotazione {
public $ID_prenotazione;
public ...
0
votes
0answers
13 views
How can i parse a file and put it in an array in ml
i am new in ml and i have this problem.i have written a function in order to read a file of chars.My code is :
fun parse file =
let
fun readInt input = Option.valOf (TextIO.scanStream (Int.scan ...
-3
votes
1answer
37 views
PHP Parse error: syntax error, [closed]
I keep getting the following error when building an array:
PHP Parse error: syntax error, unexpected ';', expecting ')'
for the following code:
$fetchResult=$PubMedClient->run_eFetch(array(
...
0
votes
2answers
58 views
console saying my array is undefined javascript
I've looked at many examples and I can't seem to figure out what I'm doing wrong here:
var names_Array = [];
var names_List = new WinJS.Binding.List(names_Array);
names_List.push({ name: "Joe ...
0
votes
0answers
11 views
Need help reading Parse Geopoint JSON
Before this question is deemed repeated, let me clarify that I'm a complete newbie and have spend more than 4 hours trying to google the answer. But I haven't found it yet.
I have a set of geopoints ...
0
votes
2answers
38 views
python - parse string (which is an array) returned from a web service as array/list
I am using
httplib.HTTPConnection(self._myurl)
conn.request("GET", "/")
data = conn.getresponse().read()
now this URL returns an python type arrays similar to the below:
[1,"apple",23,"good"]
...
0
votes
0answers
14 views
How to add items to Mongo array using Jongo?
I'm using Jongo to query mongodb. The problem is that when I try to add items to an array field I get the error that says
HTTP Status 500 - Request processing failed; nested exception is
...
1
vote
2answers
43 views
How to parse html text by div id to an array in jquery or javascript?
Hi i want to add a few hidden divs to an array and show them afterwards in different places one by one. I am a rookie so i will really appreciate your patience.
http://jsfiddle.net/alexnode/qSZx6/1/
...
1
vote
2answers
45 views
Javascript: Parsing a txt file, passing the data to an array
Good evening. I am really new to Javascript and I have been taking some courses to help me with a little side-project I have with a friend.
My problem is, I use Javascript to read a txt file (which I ...
1
vote
4answers
87 views
json array parsing in c
i am trying to parse a json array,i am facing problem.
My array is like this:
configure: {
"id": 4,
"userId": 107,
"deviceMacAddress": "00:06:66:30:02:3C",
"medication": [{
"id": 11,
...
3
votes
6answers
86 views
How to parse a variable having a dynamic name in PHP?
I do have variables like
<?php
$num1 = 'txt1';
$num2 = 'txt2';
$num3 = 'txt3';
...
and I do have a loop
for ($i=1; $i<100; $i++){
echo 'This is textNr'.$i.':' .$num.$i ;
}
I ...
1
vote
5answers
74 views
javascript array find highest value
I have an array that I need to find the highest value of so when I apply it to a Highchart I can color the background if it exceeds some dynamic number a user inputs.
My code looks like this:
...
0
votes
1answer
92 views
How to parse a text file and create a database record from it
I'm trying to basically make a simple Test Generator. I want a button to parse a text file and add the records to my database. The questions and answers are in a text file. I have been searching the ...
-1
votes
4answers
53 views
Lua - parse from text file and store values with different length
I am a beginner in programming with Lua, and I am stuck with reading a text file and trying to store this in an array. I know there already exists a topic like this, but I was wondering how I should ...
1
vote
2answers
64 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 = ...
-1
votes
1answer
43 views
Crash after reading training data for libsvm
I have scaled my training data and tried to do cross validation to obtain the best parameters but I don't know how to do. I tried to read my scaled training data and assign them to an svm_problem ...
0
votes
1answer
59 views
PHP parse_ini_file
I try to parse something from a file, and can't get it to work..
If i do:
$idd = 11;
$aInifile = parse_ini_file('status.ini', 'reply');
echo 'test : ' . $aInifile['reply']['11'];
Then i get the ...
0
votes
1answer
54 views
PHP: parse structured txt file [closed]
I have a text file that has a structure to it. I would like to use PHP take some of the values from keys in the structure and add them to an array. The value that i would like is OBJECT. Any advice on ...
0
votes
1answer
30 views
shift/reduce conflict in cup parser (grammar with arrarys and matrices)
I am writing a cup parser for a small language that is supposed to support classes with arrays and matrices as its fields. For example, if there is a class instance:
C c;
the fields are to be ...
2
votes
7answers
117 views
PHP array - explode some comma separated elements into new items
How can I take an array with individual strings but also comma separated strings and explode the comma separated items into individual items? For instance:
while(($row = ...
0
votes
3answers
82 views
Ruby Parsing Hash
So I'm using a gem file to pull links from the front page of reddit. The gem function returns a hash containing ALL the links on the front page and all their info (# of comments, karma, author, date, ...
0
votes
1answer
107 views
How to pass a php array with json to jquery function, ajax
How to pass my php array to this jquery code ?
i have tried json_encoding but couldnt use it in my jquery function.
my json string looks like this:
...
0
votes
1answer
290 views
Passing array via attribute to AngularJS directive
I'm currently having a problem when passing an array to a directive via an attribute of that directive. I can read it as a String but i need it as an array so this is what i came up with but it ...
5
votes
4answers
88 views
How to properly search and parse an array using a sequence of elements as the target
I have a byte array that looks something like this:
byte[] exampleArray = new byte[]
{ 0x01, 0x13, 0x10, 0xe2, 0xb9, 0x13, 0x10, 0x75, 0x3a, 0x13 };
My end goal is to split ...
-2
votes
2answers
55 views
How to parse the end of char array? [closed]
So let's say I have a line that looks like this:
"abcdefghi"
If I want "hi", and there is nothing that comes after it, how can I parse?
I tried strtok(str, "'\0'") but I can't seem to get that to ...
0
votes
3answers
168 views
store and retrieve javascript arrays into and from HTML5 data attributes
How can a javascript Array be stored in an HTML5 data attribute?
I've tried every variation of JSON.stringifycation and escaping characters.
What is the precise method to store the array and ...
0
votes
1answer
81 views
Filter large json file with Ruby
As a total beginner of programming, I am trying to filter a JSON file for my master's thesis at university. The file contains approximately 500 hashes of which 115 are the ones I am interested in.
...
3
votes
1answer
76 views
Error while parsing JSON Array
I've got this JSON data to parse into my Android application :
{"result":"success","source":"getPlayerNames","success":["Player1","Player2"]}
To parse it, I'm doing this way (where jsonData is a ...
0
votes
2answers
91 views
Xcode XML File Parsing From a Web Site
I have an issue with my code but can't understand where the problem is.
I am parsing the following XML file
<item>
<title>Title</title>
...
0
votes
2answers
80 views
Printing Array of Strings
I'm parsing a text file:
Hello, this is a text file.
and creating by turning the file into a char[]. Now I want to take the array, iterate through it, and create an array of arrays that splits the ...
3
votes
3answers
102 views
How do I parse a char array as integer?
I have a buffer like char array like this:
char buf[4];
buf[0] = 0x82;
buf[1] = 0x7e;
buf[2] = 0x01;
buf[3] = 0x00;
I would now like to read char two and three together as a 16Bit unsigned integer ...
1
vote
2answers
131 views
Arrays from input file
I am a very beginner for C++ and right now I need to process data from an input file which has loads of lines like the following:
2012019109 Proadan Legeaf Coaa Female 65
These are the student ...
0
votes
5answers
34 views
Tidy a certain value of an array
The value for $details['wasprice'] contains the word "was" (ie. was $23.99). I want to remove the word "was" and leave the value just as "$23.99".
Code below:
...
0
votes
5answers
187 views
How to parser JavaScript multidimensional array to c# array?
Example of JavaScript arrays:
var array_1 = [["string 1", 2013, "string 2"], "string 3", ["string 4", , "string 5"]];
/* array_1[0][2] = "string 2" */
var array_2 = [1, , ["string 1", "string 2"]];
...
-1
votes
2answers
79 views
How to parse this string to array?
How to parse this string with fomat as below to array or anything that can access each string by index?
"[\"string 1\",[\"string 2\",\"string 3\"],\"string 4\"]" // to array_1
"[[\"string ...
-8
votes
1answer
85 views
Writing a java parser method that returns an arraylist of strings [closed]
I want to write a java method that takes as a parameter strings with commas (Moe, Larry, Curly) and returns an ArrayList of the strings with each value of the input strings
How would I go about doing ...
0
votes
1answer
135 views
Howto convert JSON to Array
This is my first question to StackOverflow. I think answer is not so complicate, but I am very new to Javascript.
I have a JQuery AJAX function that parses this JSON object:
{
"Users":[
{
...
1
vote
0answers
88 views
Ruby, nokogiri and csv: about different sets of data
I have something like this:
require 'nokogiri'
require 'open-uri'
require 'csv'
fields = ['Full name', 'Address', 'Valid phone', 'E-mail']
availableFields = []
availableDataFields = []
...
1
vote
1answer
189 views
Parsing a JSON Array from HTTP Response in Java
I am using the HTTP client from Apache, and am trying to parse a JSON array from the response I get from the client.
This is an example of the JSON I receive back.
...
1
vote
1answer
82 views
Converting array of xml elements to an array of floats?
I have the following problem:
I am parsing a XML file, that contains a few "chas" elements. I save them in an array - arrayBegin. How to convert every object of the array to float ? I am a newbie, so ...
2
votes
3answers
53 views
parsing json 2 arrays (embbeded ) in android
I'm trying to find the value in jsonObject distance (which is 10194)
{
"destination_addresses" : [ "Burnaby, BC, Canada" ],
"origin_addresses" : [ "Vancouver, BC, Canada" ],
"rows" : [
...
0
votes
1answer
83 views
How to parse a json array?
I have been trying to parse a json array with no success. I can get a root element but not any array elements. Below is the beginning of my json array from Foursquare which has re-occurring venue ...
0
votes
2answers
58 views
The most basic way to retrieve a JSON array in objective-c? [duplicate]
Basically I have a JSON array on a webpage, the array works fine on the webpage and I can pull it into objective-c as a string, but I need to pull it into objective-c as an array. Can anybody tell me ...
-1
votes
1answer
44 views
How do I read a file with 2 groups of points into 2 arrays?
I have a text file: "s.txt" which includes the data:
6.48371 13.2455 11.2478 1
7.48371 13.2455 10.2478 1
9.48371 14.2455 10.2478 1
11.4837 16.2455 10.2478 1
13.4837 18.2455 11.2478 1
16.4837 19.2455 ...
0
votes
1answer
88 views
Parsing doubles from char into a 2D array with sscanf
Typical for a C beginner, I have some problems understanding arrays, pointers and pointers of arrays. Unfortunately, the info provided here did not help me much, since all deal with "easier" problems. ...
-2
votes
3answers
77 views
Identifying if the user presses <enter>
I have been working on this for several days and I'm super frustrated. This is my first course in Java so please bear with me on lack of knowledge still. I'm supposed to write a program that contains ...
0
votes
1answer
92 views
Xcode/Parse - PFQuery NSMutableArray issue
[It may be a noob question but I've spent a lot of time to solve this issue.]
Basically, I am using www.parse.com services to store my data in the cloud. I'm retrieving a NSArray called objects, and ...
1
vote
0answers
98 views
Android XML parsing, get all children values in a loop
I want to display for each date its appointments (rdv), the data should be displayed like this:
Mercredi 19 Mars 2013
09:00 10:00
Avec M. Sellami Abdelkader
10:00 11:00
Avec M. Badri Khaled
...
0
votes
4answers
93 views
converting a string array to a double array
I am trying to convert a list of numbers from a txt file into an array of numbers. There is 26 numbers, and each is on a different line in the text file. My code is
import java.io.*;
public class ...





