-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (41 loc) · 2.04 KB
/
index.html
File metadata and controls
46 lines (41 loc) · 2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Parse list of strings</title>
</head>
<body style="padding-left:50px" , "padding-top:15px">
<h1> Parse Options or Parameters for mappable parameters</h1>
<form>
<div style = "padding-bottom:10px"><b>Select Output:</b>
<input type="radio" class="options" name="output" checked /><label>Options</label>
<input type="radio" class="parameters" name="output" /><label>Parameters</label>
<input type="radio" class="array" name="output" /><label>Array</label>
</div>
<div style = "padding-bottom:10px"><b>Select Input format:</b>
<div><input type="radio" class="inputTypeValues" name="inputType" checked /><label>List of values separated
by</label>:
<input type="radio" class="separatorNewLine" name="separator" checked /><label>New Line</label>
<input type="radio" class="separatorComma" name="separator" /><label>Comma</label>
</div>
<div><input type="radio" class="inputTypeNames" name="inputType" />List of values and names:
<input type="radio" class="valueFirst" name="pairs" checked /><label>Value,Name</label>
<input type="radio" class="nameFirst" name="pairs" /><label>Name,Value</label>
</div>
<div><input type="radio" class="inputTypeNamesAndTypes" name="inputType" />List of 'name,type' separated by new line (for Parameters):
</div>
</div>
<div style = "padding-bottom:10px"><b>Enter list of values:</b></div>
<textarea class="inputOptions" cols="70" rows="12"></textarea><br>
<button class="btnSubmit">Submit</button>
</div>
</form>
<h3>Result:</h3>
<div>
<textarea class="resultContent" cols="70" rows="12"></textarea>
</div>
<script src="script.js"></script>
</body>
</html>