Tagged Questions
0
votes
1answer
12 views
Why isn't my addToList Method not working right? (C)
I'm new here and this is my first question:
Here is my code:
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
struct Person{
char *vorname;
char *nachname;
...
1
vote
1answer
21 views
List of ints to list of strings in MATLAB
I have a list of integers
[0, 10, 20, 30, ...]
And I want to use them as a legend in a plot. My understanding is that I need to give the command
legend('0','10','20','30', ...)
So how do I get ...
1
vote
3answers
47 views
Searching through mutliple values in a list Pyhton
Suppose I have a list:
items = ['matt', 'zen', 'a', 'b', 'c', 'cat', 'dog']
if elem in items
`if 'a' 'b' 'c' found then return 1
Whenever elem finds 'a', 'b', 'c' in the list and return a value. ...
3
votes
4answers
60 views
String in list to float
I have a list called 'ft_List that looks like...
[['Fall2001', '22.00', '2000', '01', '01', '120.0', '', 'N'],
[CgeCam2002', '20.00', '2000', '09', '04', '0.0', '1', ''],
['Fall2004', '18.50', ...
0
votes
5answers
84 views
Joining elements of list: Python
Suppose I have list given as:
x = ['a', '\n', 'b', '\n', 'c', '\n', '\n', 'd']
How can I use the ''.join() function to ignore the newline characters and obtain abcd?
-2
votes
2answers
36 views
How I can fill a treeView with a List<string>? [closed]
hi i have a question to treeview.
I have a List liste and the treeview with the name treeLic. Now I want to fill this treeview with this list. Can I do this and how?
XmlReader xr = ...
-1
votes
2answers
35 views
How to populate xml from list of paths
How to populate XML from list of paths in C#?
For example:
C:\WINDOWS\addins
C:\WINDOWS\AppPatch
C:\WINDOWS\AppPatch\MUI
C:\WINDOWS\AppPatch\MUI\040C
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727
...
-5
votes
3answers
70 views
How to search a list and return the specific strings and data associated with it using Java
I have a list of names with Account numbers associated with them. How would I create a method that when I type a certain name from the keyboard it would search the list and return all the account ...
1
vote
5answers
70 views
Converting String List into Int List in SQL
I have a nvarchar(MAX) in my stored procedure which contains the list of int values, I did it like this as it is not possible to pass int list to my stored procedure,
but, now I am getting problem as ...
1
vote
1answer
90 views
C#: Create a generic method that can return an enum as List<string>
How can i create a generic method that receives an enum type and return its values and names in as a list of strings, so i could loop this list and for each iteration ill be able to print each of the ...
2
votes
2answers
41 views
strings, lists and matplotlib
I am trying to read some data from a file and then take the first row and plot it on a graph against some other data using matplotlib.
My code is
import numpy as np
import matplotlib.pyplot as ...
0
votes
3answers
42 views
Extracting multiple string values of variable length before and after a delimiter in a list
I have several Python lists in the following format:
rating = ['What is your rating for?: Bob', 'What is your rating for?: Alice', 'What is your rating for?: Mary Jane']
opinion = ['What is your ...
0
votes
3answers
79 views
How to find an Index of a string in a list
So what I am trying do is retrieve the index of the first item, in the list, that begins with "whatever", I am not sure how to do this.
My attempt (lol):
List<string> txtLines = new ...
1
vote
1answer
80 views
Compare variable with hundreds values
I pass a variable with a value of millivolts acquired by a microprocessor connected via serial port, to a class in my app.
The class has to compare the received value "milliV" to many values ...
1
vote
3answers
41 views
What is the best way to prepend a conjunction to the end of an imploded array in PHP?
Let's say I have an array.
$shopping_list = array('eggs', 'butter', 'milk', 'cereal');
What is the easiest and/or most clever way to display this as a comma-delimited list and prepend a word ...
1
vote
1answer
38 views
Partitioning a string to get a list in Groovy
I have the following String :
def s="txtimgtxtvdd"
i want to extract a list from the String above as following
def l=["txt","img","txt","vdd"]
Each 3 consecutive letters is an item of list
0
votes
2answers
51 views
Split a string around characters in python
Hey guys I have seen on here answers to how to split strings at a specified character and that's pretty simple. What I need to know is how to split strings between 2 characters
i.e splitting for ...
0
votes
4answers
59 views
How do I loop through any enum to convert all possible values to string?
As title says, from this enum:
public enum DeeMacsEnum
{
Value1,
Value2,
Value3
}
I would like a List<String>. First element will have "Value1", second will be "Value2" etc.
However, I would ...
4
votes
2answers
103 views
Replacing strings with strings from a list
I am trying to write a function that takes a list of searchwords, a list of replacementwords and a string on which those will be used.
listReplace :: [String] -> [String] -> String -> ...
0
votes
1answer
45 views
Safe way to convert a string which contains a python list to a list
Using an HTTP query I get data (as string) like this
[[1356912000, 13.391120000000, 13.509900000000, 13.391120000000, 13.509320000000, 41.088424560000, 555.033691727713, 13.508273867187],
...
0
votes
1answer
61 views
Splitting a String and Assigning it Variables
Im taking info from my school grade site and its coming out as a long string this is the output:
[u'--']
[u'B', u'84']
[u'--']
[u'A-', u'90']
[u'--']
[u'C+', u'79']
[u'--']
[u'A', u'95']
[u'--']
...
2
votes
3answers
112 views
Haskell - filter string list based on some conditions
I am new in this comunity. I learn Haskell and have difficulties with Haskell-coding.
I hope you can help me.
I searched here and in Google, without any success.
My problem ist as fowllows:
I want ...
0
votes
2answers
130 views
How to replace more than one element at the same time in a String (Haskell)
i want to take 2 lists for example like this;
find=["Hou","House","Mouse"]
repl=["Mou","Bird","House"]
So when i give a text like that;
"The House with Mouse is big"
Output should be this;
"The ...
0
votes
2answers
72 views
How to filter a string to a list on Python [duplicate]
I want to filter a string like this : 'Hello%World' ----> List = ['Hello','World'] Is there any built-in function for this?.
0
votes
1answer
31 views
How to display a list of Strings with Handlebars.js
I have a list of Strings that I want to display with Handlebars.js
So far it seems that this is not possible, although it seems absurd that this should be the case.
An example of a product object ...
-1
votes
1answer
45 views
How to remove an item from a java List transformed from string[]?
String line = "5 1973 2205 2396 2406";
String[] paperids = line.split(" ");
List<String> paperList = Arrays.asList(paperids);
paperList.remove(0);
This is my Java code, I want to transfer the ...
0
votes
3answers
92 views
List included in another list in haskell
I want to see if a list is included in another list and extract that list from a list of lists, for example i want to see if ["bc","abc"] is included in ...
-4
votes
3answers
52 views
Removing String from a list [closed]
I have a list surrounded by string "[a,b,c]"
but I want it to be just a plain list
the type(list) = string
but I want it to be type(list) = list
Please help, im new.
3
votes
4answers
73 views
Converting the output of itertools.permutations from list of tuples to list of strings
Having some issues with a list after using the itertools permutations function.
from itertools import permutations
def longestWord(letters):
combinations = list(permutations(letters))
for s ...
0
votes
1answer
33 views
RegEx Adding Strings to a List
If I know the start of a string, and the end of a string (that occurs many times in a large string), what is the best way to get the contents between the two strings and add this contents to a List of ...
1
vote
5answers
78 views
How do you find out if the string is a component of the preceding string
I am trying to write a function that will look at a list of strings and determine if the next string in the list is a sub-string of the preceding string.
So if I had a list of ['Ryan', 'Rya', 'Ry', ...
0
votes
1answer
62 views
Is string.join faster with tuples or a list?
If I have the choice between
''.join( ['a', 'b'] )
and
''.join( ('a', 'b') )
which one should I use (which one is faster)? Does it matter?
1
vote
3answers
40 views
Scheme list of strings
my function in scheme looks like this
(define (func1 input)
(let kloop ((x 6))
(let ((act (string-copy (func2 input2))))
(if (eq? act "") (display "null") (display act))
(if (> x ...
4
votes
5answers
150 views
Process List Using LINQ?
In my c# MVC4 application, I have a list of strings. Each odd element in the list is a datetime. The even element before each of them is a unique identifier.
For instance:
[0] is A7M0066
[1] is ...
3
votes
1answer
124 views
Json formatted string to list
I have a string like this:
{"label":{"en":"Africa","de":"Afrika"},"description":{"en":"continent","de":"irdischer Kontinent"}}
Is possible convert to list like:
"label" - ...
2
votes
5answers
96 views
List contains String check in Java
I have an array of String and I am getting it as List for some purpose
Once I got the List, I want to check whether a String exists in the list
if(myList.contains("A")){
//true
}else{
// ...
-2
votes
3answers
32 views
Adding Each word in a String to a List?
Given the string
string1='apple purple orange brown'
How would I go about turning it into a list
list1=['apple','purple','orange','brown']
I thought I could do
string1='apple purple orange ...
1
vote
1answer
23 views
How exactly have I mangled this attempt at using a map in Standard ML?
I'm coding a caesar cipher in Standrd ML for a class assignment. I'm familiar enough with functional programming to know that a map is probably what I want here. I'm having trouble understanding the ...
-1
votes
3answers
113 views
Sorting a string alphabetically
I am a Java beginner. I need to sort a String of names alphabetically. the Strings are not submitted by the user but read from a file with a list of first names, last names and phone numbers. I am ...
1
vote
1answer
43 views
I need to convert a list; which will be provided through input, hence it will become a string; back into a list
As said in the title of the thread.
Also I tried using eval() for these lists I'll be inputting, but these lists contain string elements and other (sub-?) lists, e.g:
[Pacific, [-45,30,25], [120,59, ...
-2
votes
1answer
77 views
Python unknown list error
I'm trying to make a little program to synchronize differents folders.
I am actually coding the firsts functions, but i have a problem which I am not understanding...
here is the code of my function:
...
1
vote
2answers
42 views
How to convert a list with a string of numbers into a list of intergers?
I have a list of lists and inside the lists are strings of multiple numbers. For example,
[['34,53,53,21'], ['43,65,12,53'], ['54,23,31,34']]
and I want the result to look like:
[[34,53,53,21], ...
0
votes
6answers
75 views
abnormal string list behaviour in python [duplicate]
print difflist
for line in difflist:
if ((line.startswith('<'))or (line.startswith('>')) or (line.startswith('---'))):
difflist.remove(line)
print difflist
...
0
votes
4answers
66 views
what is the good way to optimize the list objects while the object take off more memory space than data itself in python
what is the good way to optimize the list objects while the object take off more memory space than data itself in python?
suppose we have 100M string list objects (which could from ...
0
votes
2answers
77 views
Checking if values in List is part of String
I have a string like this:
val a = "some random test message"
I have a list like this:
val keys = List("hi","random","test")
Now, I want to check whether the string a contains any values from ...
3
votes
2answers
50 views
python: converting list into string, adding ',' only when '|' is not around
how to convert list into string, while adding ',' only when '|' is not around
example:
list=['q0','|','q1','q0','|','#','|','#']
into printed string: q0|q1,q0|#|#
0
votes
1answer
41 views
Rvar to String when randomizing list comprehension
Hey so im trying to pick a random element from this list of list Strings however when i try to add choice to the list comprehension ...
{-# LANGUAGE UnicodeSyntax #-}
import System.Random(randomRIO)
...
-4
votes
3answers
75 views
how to check str int list and tuple? [closed]
there is a file include str int list and tuple. I want to put them in different list.
this is my example code:
for word in file:
if type(word) == int:
......
if type(word) == list:
...
0
votes
3answers
57 views
Concatenate 2 or more arrays into unique combinations in new list
I am working on a problem where I have can have 2 or more arrays of string values.
Starting with the first array, I need to take each value and concatenate the first value of the next array and the ...
-1
votes
1answer
56 views
How can I cluster a list of lists in Python based on string indices? Need insight
I have a list of lists in this fashion.
[['Introduction', '0 11 0 1 0'],
['Floating', '0 11 33 1 0'],
['point', '0 11 33 1 1'],
['numbers', '0 11 33 1 2'],
['IEEE', '0 11 58 1 0'],
['Standard', '0 ...




