Hello, I need help, I do not know how to do a JsonArray in swift 3, the only thing I've achieved is to do this:
{ "Etiqueta":"valor", "":"", "":"" }
and what I need to do is this:
[
{
"Etiqueta":"valor",
"Etiqueta":"...
I have a matrix and I need to find the index of a specific element in a column .
I have seen the index of method but only used in normal arrays of strings, ints etc not in arrays of arrays or arrays.
for example I have String tablero[]...
I'm trying to make an image gallery with ActionScript 2. The forward button works perfectly, but the backward button does not work. This is the code of the back button:
on(release){
var imgs:Array = new Array();
imgs[1] = {img: ImgBox1...
I need to make a record in PHP where each person is included in the list.
I must evaluate if the name of the existing color in a second arrangement that contains the name of the color and the meaning of each one, in case of finding it, it is...
Good morning everyone, I have a problem sending an array by an "onclick" method when wanting to show the array sent I get "undefined"
onclick code:
firebase.database().ref("/4/").on("value", (dataSnapshot) => {
dataSnapshot.fo...
public class Inicio {
public static void main(String[] args) {
ArrayList<String> lanzadas = new ArrayList<String>();
int opcion = 0;
int totalCara = 0;
int totalCruz = 0;
Scanner entrada = n...
Well, in this program the idea is to register a department and then register an employee, which asks you for a department in which the employee works.
The problem is that when I put the department I made a method to compare the one with an ex...
It does not let me print a random string from my list
private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) {
srand(time(0));
std::string word[] = {"black","metal"};
for (int i = 0; i < 1; i++) {...
I followed this tutorial to create a table with a JSON in Angular 2 .
link
My question is, if I had a JSON of this type:
{"visitas": [{
"_id": "586b5d313406cd103c3f38d5",
"fecha":"01-ene-2017",
"paciente": {
"_...
I am consuming a Webservice Soap of type asmx from PHP . I receive the data but it does not give me the object array ordered with the fields that returns the XML of the Webservice , it is like that it show...