Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
3answers
7k views

Android - reference a string in a string array resource with xml

I have been unable to find a solution for this. What I'm trying to do: I have preferences where you can enable/disable what items will show up on the menu. There are 17 items. I made a string array ...
9
votes
8answers
407 views

New to programming, don't get 2D/3D arrays

Hey everyone, I'm basically new to programming. I've decided to try and get started with C (not C++ or C#) and so far I've been doing pretty well. I managed to get far as two-dimensional arrays before ...
6
votes
5answers
455 views

C#: string[] to delimited string. Is there a one-liner?

What I'd prefer is something like: string[] strArray = {"Hi", "how", "are", "you"}; string strNew = strArray.Delimit(chDelimiter); However, there is no such function. I've looked over MSDN and ...
5
votes
2answers
258 views

How Access the String array list xml following structure

I have create following structure. Here levels are up to 4 and groups are up to 6 same xml file structure.But i cannot access as level1 -> group1-> first item, which has also to item. Here total ...
3
votes
7answers
100 views

How to append String at particular index in an array of Strings

I have a String array like below: String[] titles = new String[] { "Booking", "Entry", "Type", "Duration", "Status", "Contract ID", "Capacity", "Start Day", ...
3
votes
2answers
104 views

How to map a String[] in hibernate

How would you map the following class in hibernate: private class Book { private int id; private String title; private String[] chapterTitles; //Constructor, Getters and Setters } ...
3
votes
2answers
75 views

how to NAME a string-array using a string resource

How can I do this? <string-array name="@string/a_string_from_resources"> Is it possible to name a string-array using a string Resource? <?xml version="1.0" encoding="utf-8"?> ...
3
votes
3answers
176 views

Get a 2 String array from HTML … using regex?

I'm working on a personal project to auto fill out the USPS Click & Ship form and then output the Ref# and the Delivery Confirmation # So far I've been able to get the whole process done, but I ...
3
votes
4answers
3k views

How to load string of array in to combobox faster in MFC?

I have an array of 1000 strings how to load them in to combo box faster like kind of dumping in to rather than iterating it? And to copy the combo box data to some 10 other combo box?
2
votes
1answer
94 views

How can I concatenate static strings with XML string resources?

I'm trying to combine a static "hard coded" string with one referenced from strings.xml for string array items. The goal is to have a dynamic metrics list where the number is the same for all ...
2
votes
2answers
152 views

C# inline conditional in string[] array

How could you do the following inline conditional for a string[] array in C#. Based on a parameter, I'd like to include a set of strings...or not. This question is a followup of this one on ...
2
votes
2answers
691 views

Android string-array display Percent Sign

I have a string-array in my strings.xml file that has multiple items in it. Only one of the items has multiple percetage "%" symbols that needs to be displayed. Seems none of the advice on how to ...
2
votes
1answer
802 views

Android Development String Array Resource too big, crashing Android App!

I have a String Array Resource that has about 1000 drug names <string-array name="index"> <item>Aspirin</item> <item>Levitra</item> .... </string-array> I ...
2
votes
7answers
2k views

Using Property to get array element in C#

Is there a way to get a specific element (based in index) from a string array using Property. I prefer using public property in place of making the string array public. I am working on C#.NET 2.0 ...
2
votes
4answers
347 views

Initializing a string array in a method call as a parameter in C#

If I have a method like this: public void DoSomething(int Count, string[] Lines) { //Do stuff here... } Why can't I call it like this? DoSomething(10, {"One", "Two", "Three"}); What would be ...
1
vote
2answers
22 views

how to get the database value to a String array in android(sqlite Database)

i have a database name "CUED" (sqlite Android)it have a table HELLO which contain a column NAME i can get the value to String from that column .let me show you my code section myDB ...
1
vote
5answers
90 views

Memory usage of a Java String Array

How much space does a java string array take up? More specifically, how much space (in bytes) does a string array that looks something like this: Longbowman kingdom lord ...
1
vote
2answers
133 views

Pointer to string array in C

Playing with pointers in C is fun (not really). I have several arrays of strings I want to declare in an easy way, preferably something like: arrayOfStrings1 = {"word1", "word2", etc. }; ...
1
vote
2answers
44 views

How to add items to a stringArray in arrayList programatically

this is my array.xml file in 'res/values' folder <resources> <string-array name="updateInterval"> <item name="1000">Pico TTS</item> <item ...
1
vote
3answers
110 views

String array in C#

I have a problem to insert string elements in string array in this case .. For example I have a 3 assignment lines a=b b=c c=e than I want to insert this six variables in string[] variables I ...
1
vote
2answers
61 views

Converting a text string value from a spinner into an integer for mathematical manipulation in android

I have developed part of an application which contains a number of spinners to choose various options. I have created the spinners the following way: Spinner spinner1 = (Spinner) ...
1
vote
4answers
59 views

How do you use a string array in a conditional statement in C?

I want to use a string array in an if statement to test whether the input string matches any of the strings in the array. So far this is what I've tried: void checkForError(char input[50]) { ...
1
vote
1answer
158 views

C# compare string[] array to generic list of objects

how can i compare the items in a string[] array against a generic list that contains objects using LINQ? this generic list contains objects called picInfo. picinfo class looks like this: ...
1
vote
4answers
150 views

Check if String in String[] is in ArrayList<string>

What I've tried Hello Guys, I just builded a Broadcast Receiver with which I can get the incoming text messages, than I split the text message when there's a space and save it into a String[] Now ...
1
vote
3answers
124 views

How to split a String by space

I need to split my String by spaces. For this I tried that: str = "Hello I'm your String"; String[] splited = str.split(" "); But it doesn't seems to work, what do I have to change?
1
vote
4answers
104 views

Assigning values to C# string array based on parameter

In C#, I have a string array of values. However, based on a parameter, the array should not include two of the values, but include all the same other values. What's the proper way to approach this? (I ...
1
vote
3answers
107 views

Foreach loop causes NullReferenceException

At the top of my code (before constructor) I write: String[] CAN = null; This string array is updated in another function. Later in my code I have this foreach loop: foreach (String str in CAN) { ...
1
vote
4answers
82 views

mySQL database structure

I'm kinda stuck in a tricky situation with the mySQL DB design for my webservice.The DB had initially this Structure: CREATE TABLE IF NOT EXISTS `Disease` ( `Name` varchar(20) NOT NULL, ...
1
vote
1answer
110 views

Read column from dataGridView and place it in a string array

I have a DatagridView were the first column is fixed and has textboxes. The second column has comboboxes. All of the rows at the second column have 4 choices(name, surname, address, date). When the ...
1
vote
1answer
326 views

Android XML values - String Array :: Placing a quote in the value?

I have a string array in strings.xml, in the values I need to have shutter speeds. For example: 3"2 or 0"8 I try to enter the data in the xml, but that does not work. Alternatively; when ...
1
vote
1answer
214 views

getResources and String Array forces close

I am new to android programming and it's been some years since I have done any Java programming. I have declared a string-array in the XML strings.xml: <string-array name="questionSet1_array"> ...
1
vote
4answers
151 views

How do I access individual values within a string array within a Hashmap?

My declaration of the map is as follows: Map<Integer, String[]> mapVar = new HashMap<Integer, String[]>(); And I initialized it by making several string arrays and putting them into my ...
1
vote
1answer
189 views

Calling a Resource by a string?

Here's the setup. I have a spinner, and each item in the spinner is associated with their own StringArray. I want to streamline the process of loading the StringArray when an item is selected in the ...
1
vote
6answers
96 views

String[] Pointing to the same reference in VO object

Consider the following two classes (one is a Main with main() method): The VO class: public class TheVO { private String[] theValues = null; /** * */ public TheVO(String[] ...
1
vote
1answer
239 views

Removing data from a generic string Array C#

I'm learning about generics, so I'm trying to make my own generic array class, which I can use to make an array of strings or an array of numeric data. This generic class has some different methods, ...
1
vote
3answers
673 views

Adding data to a generic string Array C#

I'm learning about generics in C#, and I'm trying to make a generic array and add some strings to it. I can easily add INT values to it, but I can't figure out how to make it work with strings. When ...
1
vote
2answers
1k views

Using string-array list length as an integer

I'm using a random number generator to select an item out of an Android string array. Is there a way to set my integer as the length of the array without actually counting the number of items in the ...
1
vote
6answers
282 views

Does C++ support constant arrays of type string?

I'm a programming student in my first C++ class, and for a recent project I did, I was unable to create an array of strings like I could do in C#: string MONTHS[ARRAY_CAPACITY] = { "Jan", "Feb", ...
0
votes
1answer
42 views

searching through a string-array in android

I have a rather large string-array with a lot of strings (obviously), and i want to put a search bar in the top. This string array comes out in a listview. I want to be able to search for some string ...
0
votes
2answers
67 views

pointer array with strings using malloc and buffer in C

I am stuck in how to fill a pointer array with strings using malloc. In debug i see that when i fill the 1st pointer of array with a string, when its about to go to next pointer in the array it pass ...
0
votes
6answers
65 views

How to remove all elements in String array in java?

I would like to remove all the elements in the String array for instance: String example[]={"Apple","Orange","Mango","Grape","Cherry"}; Is there any simple to do it,any snippet on it will be ...
0
votes
3answers
50 views

How is parse_str supposed to be used?

parse_str is not bahaving as I would expect... I am storing a string to a cookie. It has been prepared using http_build_query and then base64 encoded. when I read the cookie, I base64_decode, and ...
0
votes
1answer
89 views

Extract token positions from String Array- Java

I'm just asking whether there is a simple way to extract a string out of a string array in java. For example if i've the input: String searchtext = "The one thing"; String source = "the one Thing in ...
0
votes
1answer
113 views

mvc3 model string array property getting Object reference not set to an instance of an object

In my application I have a Public Class HomeIndexClientModel I declare these properties: Public strButtonBarProblemGuid() As String Public strButtonBarProblemTitle() As String Public ...
0
votes
0answers
113 views

Show different String Array Toast in 3 List View Flipper

I have 3 listview on my Flipper using diffrent linear layout ListView list; ListView list1; ListView list2; and I have String Arrays that has been converted from Array list. ...
0
votes
6answers
60 views

send a String array as parameter to a function

I have a function in a class called Function, like below: public int SearchedRecords(String [] recs) { int counter = 0; String pat = "-----"; String[] records = recs; foreach (String ...
0
votes
3answers
105 views

Cannot start new line with “\n”?

I am working on a project and there is a small part of it really confusing me. Say I have a String array : String[]text = {"string","array"}; for example. And I want to make it to a single ...
0
votes
5answers
135 views

check if string array contain value.C#

i have a string array . string[] stringArray = { "text1", "text2", "text3", "text4" }; string value="text3"; I would like to find if stringArray contain value and if so the position I dont want to ...
0
votes
4answers
59 views

Can't i initialized empty String array and pass in the value afterwards in Java?

I can't seems to find out what what is wrong with my codes? i can't pass in non-empty String value into an empty String array? String[] profiles = wifiPositioningServices.GetAllProfileData(); ...
0
votes
1answer
68 views

ListPreference coding value not executing inside if statement

Can you check my code for anything missing? I'm trying to get use the value from a listpreference in an if statement but the if statement never responds to the value stored in the listpreference. ...

1 2