1
vote
4answers
197 views
How to check if a string only contains alphanumeric characters in objective C?
I'm working on a small iphone project and i would need to check if the userName entered only contains alphanumerical characters? (A-Z, a-z, 0-9). How would i go about checking it?
1
vote
1answer
52 views
Order alphanumerical list in PHP
HI,
i need to order a list in PHP that looks like:
B1200
120A81
00A12
00A22
C100B
C100C
ordered list would be:
00A12
00A22
120A81
B1200
C100B
C100C
I was thinking about splitting …
0
votes
2answers
37 views
JQuery ajax call does not take alphanumeric parameters!
Hello all,
JQuery seems to be giving an error when trying to pass an alphanumeric parameter like so:
$.ajax({
type: "POST",
url: "Defa …
0
votes
5answers
171 views
Sorting strings with integers and text in Python.
I'm making a stupid little game that saves your score in a highscores.txt file.
My problem is sorting the lines. Here's what I have so far.
Maybe an alphanumeric sorter for py …
3
votes
4answers
214 views
How to sort and display mixed lists of alphas and numbers as the users expect?
Our application has a CustomerNumber field. We have hundreds of different people using the system (each has their own login and their own list of CustomerNumbers). An individual …
17
votes
5answers
1k views
Allow only alphanumeric in textbox.
I have a textbox and it need the user not allow to enter any specialcharecters
He can enter 1. A-Z
…
0
votes
2answers
338 views
Generating Case Insensitive, Unique Alphanumeric Strings of Fixed Length
I have searched for an elegant solution, without luck. Ultimately, I need to create a number of unique id's (on a single machine) of a fixed length (of 3 characters) that begin wit …
1
vote
5answers
2k views
How to strip all non-alphabetic characters from string in SQL Server?
How could you remove all characters that are not alphabetic from a string?
What about non-alphanumeric?
Does this have to be a custom function or are there also more generalizab …
2
votes
3answers
147 views
Increasing Alphanumeric value in user defined function
Hello,
I'm trying to code a user defined function under SQL Server 2005 that will increase integer part of alphanumeric value by one. For example, uf_AlphanumericIncrease ('A0002 …
0
votes
4answers
528 views
C# Method like Base64String, but only alphanumeric (no plus or slash)
Hello,
is there any C# method that works similar to Convert.ToBase64String but doesn't generate anything except alphanumeric output?
Thanks!
1
vote
3answers
648 views
how do i block or restrict special characters from input fields with jquery?
How do I block special characters from being typed into an input field with jquery?
0
votes
5answers
151 views
Changing SKUs from Alphanumeric to Numeric, How to!
Our company has thousands of SKUs that currently have 1-6 digits followed by 10 letters that represent various color options, ie. 1550-B= Product 1550 is Black. B for Black. 165334 …
0
votes
4answers
302 views
Random alphanumeric key in Perl
We have to automatically import a large list of users with some data into a running system.
For an initial password I want to update the list (csv format at the moment) with a rand …
1
vote
1answer
325 views
How to apply an alphanumeric sort in XSLT
Based on the following XML, what is the best way to achieve an alphanumeric sort in XSL?
Edit: to clarify, the XML below is just a simple sample the real XML would contain much mo …
1
vote
0answers
75 views
compact framework phone keypad input
I am developing an application for a device that has a keypad similar to a phone in which the 2 key is also for ABC, the 3 key is also for DEF, etc. The expected behavior is simil …
