Questions tagged [name-value]
49 questions
0
votes
1 answer
send name value pairs to simulate web form in python
I'm working on parsing name/value pairs in Python 3.
I want to send name/value pairs to my script to simulate them coming from a web form.
I'm trying something like:
python myscript.py?v1=a&v2=b&v3=c
but that doesn't work.
I get the error:
python:…

Shawn
- 3,031
- 4
- 26
- 53
0
votes
1 answer
Why does add_column assign a letter to the data?
I tried reading through R's documentation on the add_column function, but I'm a little confused as to the examples it provides. See below:
# add_column ---------------------------------
df <- tibble(x = 1:3, y = 3:1)
df %>% add_column(z = -1:1, w =…

Stephen
- 133
- 1
- 9
0
votes
2 answers
Azure Api "NameValue" within "NameValue" is not working
Trying to use Azure API "NameValue" variable within another variable.
//NameValue variable 1
Namedvalue_URL_Name: sts://domain.com
//NameValue variable 2 that using above variable within.
Namedvalue_withinNameValue_Name:
@{
var u =…

user3711357
- 1,425
- 7
- 32
- 54
0
votes
0 answers
MVC 5 post serializing issue when name value pair is missing within the collection
I recently ran into a problem within my MVC5 C# project where my dynamically generated HTML elements (a collection of phone numbers) could be posted to the server where indexes were missing. Like this, missing…

RichieMN
- 905
- 1
- 12
- 33
0
votes
1 answer
Xquery to map the value of a specific name attribute
I am trying to create an xquery in jdeveloper . I am stuck at a small portion of it. It would be great if I get some suggestions.
Below is the part I am stuck at
The request is:
`

Simran
- 69
- 2
- 13
0
votes
1 answer
Storing account settings in a single row with complex data
I need to store account settings for each account profile. I decided to use SQL DB for this, but not sure should I go with complex data (json/xml).
I found answers
Using a Single Row configuration table in SQL Server database. Bad…

mko
- 6,638
- 12
- 67
- 118
0
votes
2 answers
Name value pair table vs parent child
I want to store about 100k rows of data, and all data some common field.
All data have a category and other fields is base on category.
For example if data is in category 1, It had extrafield1 and extrafield2
I search and found two way for storing…

Ali Akbar Azizi
- 3,272
- 3
- 25
- 44
0
votes
0 answers
android name value pairs for HttpPost
I am new to android and I have a question about name value pairs that I am a little confused on. For example I am trying to post to the following example and get the response code using the endpoint:
…

adrian m
- 11
- 2
0
votes
1 answer
Matlab Function - ask for user input for given argument
I have a Matlab function that has numerous name-value parameter inputs. For some of the parameter names, there are a lot of possible values (which are not always obvious) that the user can choose from. What I would like to do is, IF the user calls…

RickyG
- 1
- 1
0
votes
1 answer
Remove or replace special character in namevaluepair for http post request android
I have a problem when I tried to post my data it logged as :
[ObserverTRID=5QEET3TE10,
ObsType=Evaluate,
ObsDate=17-Jul-2014,
ObsTime=09:22:12,
// == loc
ObsTitle=bolllloooo,…

Ahmad Arslan
- 4,498
- 8
- 38
- 59
0
votes
1 answer
R plot, actual Row values instead of row numbers
I have a data set containing names of Solar Panel arrays, their dates of completion and location (long/lat).
I created an rplot with the time of completion on the x axis and the names of each array on the y axis.
Here in lies the problem - the…

tijanicharles
- 183
- 3
- 17
0
votes
2 answers
How can I convert a query string to variables in PHP?
I have a string like this stored in mysql table:
?name1=value1&name2=value2&name3=value3
originally this data was only going to be used to send GET data to another script but now i find myself needing it for other things.
is there a predefined…

I wrestled a bear once.
- 22,983
- 19
- 69
- 116
0
votes
2 answers
Create this string exactly in Android
I want to build 2 same products for Android and iOs.
The iOs already works, but the android doesnt, that's because of the format of the string.
in iOs this is:
NSString*jsonString = [[NSString alloc]…

David Raijmakers
- 1,369
- 1
- 16
- 40
0
votes
1 answer
How can I store name/value pairs in a file with Ruby where the values can be also multiline text?
How can I store name/value pairs (also called hashes) in a file with Ruby where the values can be also multiline text? Of course I want to code the most simple way.
I have seen such text files earlier in Windows:
[name]
Dr. Hash…

Konstantin
- 2,983
- 3
- 33
- 55