1
vote
4answers
60 views
PHP - Sanitise a comma seperated string
What would be the most efficient way to clean a user input that is a comma seperated string made entirely on numbers - e.g
2,40,23,11,55
I use this function on a lot of my in …
1
vote
6answers
122 views
what is an appropriate way to programmatically exit an application
I am evaluating user inputs as commands for my application. If the user presses Q, or q, and then hits enter,the application quits and execution temrinates.
Is there a proper cont …
1
vote
2answers
45 views
how to catch blank input with scanner class in java
I am using the scanner class to capture user input from the command line (strings only), as an alternative to my previous question.
The following seems to work fine, except the bl …
2
votes
3answers
47 views
Safely executing user-submitted python code on the server
I am looking into starting a project which involves executing python code that the user enters via a HTML form. I know this can be potentially lethal (exec), but I have seen it don …
0
votes
2answers
24 views
User input in UITextView call delegate method twice?
I want to compare a string with user input character by character. e.g. I want to let user input "I have an apple." and compare the input with this string to see if his input is co …
2
votes
3answers
68 views
how to make the Textbox to allow only three digits with three decimal points?
I want to make the textbox allow only three digits and three decimals.For example 999.999.similarly it doesnt allow any characters like a,b,/,etc.How can I do with the Jquery?
0
votes
0answers
20 views
How do create and load my own input method in iPhone?
I'm wondering if there is a way to add my own input method in iPhone. (I know there are some apps like iCosta and WeFit doing this.) But is there a officially supported way to do t …
0
votes
2answers
43 views
Proper handling of user input
So I'm setting up my form validation, inputs, error messages etc... and then realized a lot of the info that I'm collecting will need to be output again at some point.
So I wrappe …
0
votes
1answer
53 views
Escaping ampersands inputted by users through text fields?
Like almost all apps today, I have users who enter various information through standard text inputs. My app is running on Rails.
It's a no-brainer to escape ampersands that I …
0
votes
1answer
143 views
python - get a key press from the linux command line without having to press enter
I'm writing a command line python programme on linux. I want to ask the user to press a single key, and then it should return that key press. I don't want them to have to press ent …
3
votes
3answers
134 views
How to get the last key pressed without stopping the C programm ?
Writing an application with command line interface and I would like to know at any time if F1 or esc or an arrow key is pressed. What is the simplest way of doing this. I would lik …
0
votes
1answer
74 views
task kill command does not work for c# app
I have c# winform bug: when the application is waiting for user input yes/no/cancel taskkill command line does not work.
Any idea?
1
vote
6answers
234 views
Parsing impossible dates in C#
Is there an elegant way to be permissive in date input in C# to accommodate user input like '2009-09-31' (e.g. September 31, which doesn't exist and causes DateTime.Parse to choke) …
0
votes
3answers
65 views
Collecting a huge amount of data on a webform, best methods?
Hey all,
I need to allow users to choose/input authors associated with a given publication and there could be just a single author or (43 = the most I have seen so far) up to 40+. …
1
vote
2answers
108 views
Input on same line as output in c#?
For example:
C:\>Input a number: 60
Where the output would be "Input a number: " and the input would be "60".
How do I get these to be on the same line?
EDIT:
The problem that …
