-1
votes
4answers
72 views

How to make sure String objects are garbage collected in Java

Here is the code snippet. method(){ String s1="abc"; String s2 = new String ("abc"); s1=null; s2=null; -------- --------- } At the end is s1 & s2 objects are ...
0
votes
3answers
52 views

How do I split two strings and make a key-value pair in javascript

var ma = "jim"; var nu = "123"; var splitit = ma.split(""); var splitit2 = nu.split(""); for (i=0; i<=splitit.length;i++) { var bach = {splitit[i]:splitit2[i]}; } alert(bach); ...
0
votes
1answer
46 views

How do I compare a JSON object with a string in Javascript

I am developing this website layout for http://myttc.ca. I was successful at retrieving most of the data and displaying it on the page. But when I had to filter my search to find only the stop names ...
0
votes
0answers
73 views

passing parameters to 'data' property in jquery.ajax call

Beginning to tear my hair out on this one so I figured time to ask: I have a jquery function like this: function run_script(prog, args){ var out; jQuery.ajax({ method: 'POST', url: prog, ...
-1
votes
1answer
49 views

Object foo has no method 'toLowercase' [closed]

I'm trying to get a lowercase value of each key in said object. for (each in {'foo':'bar','bar':'foo'}) { console.log(typeof each, each.toLowercase()); } The error I get is Object foo has no ...
0
votes
1answer
65 views

Extract a string array from an object in c#

It's been a while since I studied programming and I'm struggling with this. I receive from a web service a bunch of info, which I save on an object, then after using the reflection method I get ...
0
votes
2answers
30 views

Converting an Object into a string using JQuery

I am using an API that delivers the following data / value object: Object {left: "704.4026794075746px", top: "171.54992155622406px"} I need to be able to take the left and top coordinates for use ...
1
vote
2answers
98 views

Java - Strings and the substring method

I have some question that I wonder about. I know that string are immutable in Java and therefore a new string object is created rather than changed when for example assigning to a existing string ...
2
votes
2answers
64 views

How do I use a string as an argument to represent an object in Java?

Pardon my lack of knowledge and maybe improper terminology, as I'm new to Java. Here is a simplified version of my code so far: import javax.swing.ImageIcon; public class Cards { static ...
2
votes
6answers
89 views

How to find how many times does a string object repeat in java?

I have to String objects: String first = "/Some object that has a loop in it object/"; String second = "object"; What I need to do is find how many times does the second object repeat in the first ...
0
votes
2answers
34 views

how can I make an object from string contains printed object

I have some code: Test Controller: Class test extends CI_Controller{ public function print_object(){ $x = (object) array('a'=>'A', 'b'=>'B', 'C'); ...
0
votes
3answers
40 views

How to operate on object based on string

JS noob here. If I have a string, how can I call an attribute from an object which has the same name as the string? var carrot = { 'vitaminA': 150, 'vitaminC': 100 }; var cucumber = { ...
-3
votes
3answers
81 views

String object creation

I'm new to Java, and have a question related to the creation of strings. Case 1: String a = "hello"; String b = "world"; a = a + b; System.out.println(a); Case 2: String a; String a = "hello"; a ...
0
votes
2answers
82 views

How can I split these two object strings so I can put into database

while (pCur.moveToNext()) { String phone = pCur.getString(pCur.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER)); String pon = name ; System.out.println("phone" + phone + ...
0
votes
1answer
26 views

R: Using object's name to print what is inside the object

My question is a basic one concerning object type manipulation. hello = 3 name = 'hello' I'm looking for a function that allows me to find the value 3 by using only the object name. Something ...
0
votes
2answers
55 views

Check to see if eval(string) is in list of objects. In Python

I have a list of objects. I have a user inputted string. I need to check and see if the string is in the list of objects. For example: string = "book" object_list = [book, paper, pencil] if ...
0
votes
1answer
31 views

Create Object named by String

Is it possible to create a method that can create objects named by String? private static int a = 0; public static void CreateNew() { Object ("number" + a) = new Object(); a++; } If you ...
1
vote
2answers
86 views

Android problems with parsing json

Hello I'm trying to parse json from my website. Te jsonString I get from te httpresponse is working fine but when I try to parse it in an JSONObject it gives a NPE. This is the json im testing with ...
0
votes
2answers
84 views

Are there immutable objects besides Strings in Java?

I only heard that strings in Java cannot be immutable and I was wondering are there other objects besides strings that are also immutable? On a side note, are strings in C++ immutable too?
0
votes
2answers
57 views

Why does this string comparator not compile?

This is the comparator I'm using: import java.util.Comparator; public class StringComparator implements Comparator { public int compare(String obj1, String obj2) { String delimeter ...
0
votes
1answer
73 views

How to put object into string?

When a used click an image, I want to put this clicked image into lightbox. That's working. I would like to add another functionality and next to the displayed image in lightbox, I would like to put ...
0
votes
0answers
38 views

How to call object tree use string

Question about C#. I need to call object tree use string. How it look for PHP: $myVar="Hi my friend!"; $need="myVar"; echo($$need); // Hi my friend!
0
votes
1answer
354 views

Convert ArrayList of Objects to Two dimensional Array

I am having a little trouble converting an Arraylist of objects to a two dimensional array. The arrayList ar contains a number of objects named Row. Each Row contains a number of Strings. I want to be ...
1
vote
2answers
58 views

string is recognized as object by strtolower function

The follow error I get when I try to strtolower() my string: Warning: strtolower() expects parameter 1 to be string, object given in When I do a var_dump() it shows me the string should be a ...
0
votes
2answers
382 views

How To Get Control Property by “String Name”?

i have been created buttons and textboxs by coding in next loop, the result 'T(x).Name = "text_1" 'T(x).Name = "text_2" 'T(x).Name = "text_3" '.... 'B(x).Name = "button_1" 'B(x).Name = "button_2" ...
3
votes
2answers
68 views

Passing null to the method preferring String, not Object

I am facing an issue in my program and I made it clear with a small code snippet below. Can anyone explain why this is happening? class ObjectnullTest { public void printToOut(String string) { ...
3
votes
2answers
152 views

how many string objects are created?

I have the following c# code: string stg1 = "String 1"; string stg2 = "String 2"; string stg3 = "String 3"; string stg4; stg4 = stg1 + stg3; stg4 = stg4 + stg2 + stg3; stg4 = ""; stg3 = ""; How ...
0
votes
1answer
83 views

Convert string representing object to javascript object

I'm currently using jqplot to display some charts and prepare javascript code with php. On one of my chart, I use Ajax to get a new chart. For this, I get a json array with the list of values and ...
0
votes
3answers
68 views

How to obtain an object from a string?

Say I have the following class class Test: def TestFunc(self): print 'this is Test::TestFunc method' Now, I create an instance of the class Test >>> >>> t = Test() ...
1
vote
1answer
91 views

JavaScript string and object in array

I'm trying to animate some divs from an initial location to other locations. For this, I am adapting the code from this fiddle: http://jsfiddle.net/c6UEm/27/ The code I have is: function ...
-1
votes
4answers
91 views

Is equal sign passing a reference or object copy?

When I have this code: class A { public int X = 0; ... } public void Function() { // here I create a new instance of class A a = new A(); a.X = 10; // here I create a pointer ...
1
vote
2answers
77 views

Adding Element of an Object in an Array in an Array to a String Array

I have a method that is suppose to traverse 2 arrays of Ojbects, the first being Menu of size 50, which contains Recipes, which hold up to 10 elements called ingredients, which holds up to 3 elements ...
1
vote
1answer
40 views

JQuery Object to String (with Object elements) and write it into cookie

I have a list with some images in it, want to reorder the list elements (which works fine with sortable jquery ui) and then write the scr of the images into a cookie in the right order. ...
0
votes
2answers
78 views

Class object pointer won't assign to string

I am attempting to assign a pointer to a value like so string name; XMLSerial * ptr; if(name == "Armor") { ptr = &name; } Name is initialized earlier. XMLSerial is ...
2
votes
2answers
106 views

Passing in String to jQuery function as Object

This might be a stupid question, but I'm trying to pass in a string of settings I've constructed in the following format: "setting1" : "value", "setting2" : "value", "setting3" : "value" The above ...
0
votes
0answers
37 views

coffeescript: string as reference to an object

name = "test" @defaultObject = [test] @defaultObject[name].callSomeMethod request How can I achieve the above functionality in coffeescript ? I know its possible in JS.
0
votes
2answers
48 views

converting the value of an object/array into a string in javascript

I'm trying to do a login service on a website, but I'm having trouble accessing the data from mysql. At the moment I am only taking the password for the user concerned, to compare it to the user ...
2
votes
1answer
168 views

How to convert variable (object) name into String

I have the following data frame with variable name "foo"; > foo <-c(3,4); What I want to do is to convert "foo" into a string. So that in a function I don't have to recreate another extra ...
0
votes
2answers
266 views

mysqli : mysqli_result could not be converted to string

I know there have been asked lots of similair questions like this one, but I just can't translate it to my problem so thats why I ask again. The code used to work fine but since the mysql is going to ...
-1
votes
1answer
53 views

Parameters of a object get lost (XCode for IPhone)

I have here a strange behaviour. XCode 4 for iOS 6 (Iphone 4s) In the init-section I want to read data from a file. NSString *rawData = [[NSString alloc] initWithContentsOfFile:filePathLib ...
-1
votes
2answers
117 views

How many objects are created in the following Strings in Java [duplicate]

Possible Duplicate: How many java objects generated by this code? and why? I am very confused in the following String s1 = new String("Java"); String s2 = new String("Java"); How many ...
0
votes
2answers
137 views

With JavaScript or jQuery, how can I convert a name-value pair string into an object?

I have a name value pair stored as a string that I would like to convert to an object in jQuery or JavaScript. Here is an example of that pair. {'auto':false, 'itemAWidth':20, 'itemBWidth':20, ...
-2
votes
1answer
49 views

From Object To Human Readable Text [closed]

I am working on a small function which will convert objects to strings. It is easy if object has values as arrays. But I want this function to work even my object or array has some values as another ...
0
votes
3answers
109 views

Java jList1.getSelectedValue() returns an Object. I need a String from the selected list item.

I'm a second year Java student, and I'm learning various things on my own time. One of these is JList. jList1.getSelectedValue(); The above code returns an Object, not a String. I need a String of ...
3
votes
2answers
140 views

Add incrementing number to JSON object String to make them unique

I have a JSON object that is being passed to me as a String, but the Object in its String form contains duplicate properties. I need to temporarily add incrementing numbers to the Properties in order ...
1
vote
3answers
102 views

Singleton access / PHP Magic method __toString/ printing a static object

what I'm trying to achieve (PHP 5.3) is to have an accessor to my representation of, for example, the HTML Body of a page. Instead of echoing everything directly it should be added to an array of ...
0
votes
2answers
443 views

TypeError: string is not a function

In the following code, TypeError: string is not a function on line 30 var myColour = new colour(255,255,255); is thrown. Can anyone see what is wrong with the code. Many thanks. var bodies = []; var ...
3
votes
7answers
207 views

how to remove a comma and replace with a period javascript

I have a string that I have created where I would like to remove the last comma and replace it with a period. I want to keep all of the other commas. Here I was trying to use a conditional statement, ...
2
votes
1answer
89 views

How can I find all references of string from the object? [duplicate]

Possible Duplicate: Track all object references in C# Strings are reference types. They have two parts; an object and a reference to object. For example; string str1 = "Soner"; string str2 ...
2
votes
1answer
91 views

Benefits and drawbacks of using enum or string to represent object type

I have a winform application in vb.net and am developing a Rock Paper Scissor game. I use enum in one place and string in another to represent some an weapon type as shown below: ENUM example: ...

1 2 3 4 5