Questions tagged [items]
637 questions
-3
votes
2 answers
Extra tags on the end of a URL for different pages
Hello I really want to learn how to do something like this. If you go to a page for example it says http://example.net/search.html?catagory=food&includelevelone=true. I do not have access to php so it can only be HTML and Javascript/jQuery. Thanks…

user3212157
- 23
- 3
-4
votes
1 answer
Netsuite Data Information
I am trying to integrate Netsuite and extract the data out of it. Need to establish a relation between Sales Orders, Items, and Invoices. Can anyone which objects store this information and how it's related?
-4
votes
1 answer
Counting number of items in an array in C
I keep getting the output of 100 when I do what everyone else online has been posting about:
int total = sizeof(num)/sizeof(int);
It doesn't seem to work for me. Here's my code:
int main() {
static int num[100];
int totalNum =…

Dongbae
- 31
- 1
- 8
-4
votes
4 answers
Android : loop through all items in a listview
Want to get quick answer how to list all items on my listview, in order to print out a list or share to a notepad app etc. That is, to get a variable with following information from the listview: "apple", "banana", "orange". Below is my listview.…

user2911996
- 63
- 1
- 2
- 10
-4
votes
3 answers
Get unique items from multiple lists using LINQ- C#
I have 3 lists.
ListA
ListB
ListC
I have to select one item from each list but the item.itemID should be unique for each of those items. How can i achieve this? Thanks in advance.

AJ_NY
- 59
- 1
- 8
-7
votes
1 answer
Finding how many times an item has appeared in an array = explaining the code
Could you please explain how does this code work ?
I can not understand how this code works.
HashMap countMap = new HashMap();
for (String string : strArray) {
if…

Krystian Małysek
- 11
- 1
-8
votes
4 answers
Why do keys() and items() methods return different Boolean values for same key? (Python 3.6)
>>> spam = {'name': 'Zophie', 'age': 7}
>>> 'name' in spam.keys()
True
>>> 'name' in spam.items()
False
>>>
In python 3.6, when checking whether a key exists in a dictionary the keys() method returns True, while the items() method returns False…

Stanley
- 69
- 1
- 3