Tagged Questions

string with alphabets and numbers

learn more… | top users | synonyms

20
votes
14answers
2k views

Sorting strings is much harder than you thought!

Sorting a list of strings in a way that makes sense to a human is a very complex task. It's not just about comparing ASCII values. Usually, the case doesn't matter. You probably want "File 2" to be ...
13
votes
3answers
4k views

Generate a random alphanumeric string in cocoa

I know this can't be that hard. I've searched, but I can't seem to find a simple solution. I want to call a method, pass it the length and have it generate a random alphanumeric string. Any ideas? ...
10
votes
7answers
24k 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 generalizable solutions?
9
votes
7answers
8k views

Remove leading zero's from alphanumeic text

I've seen questions to prefix zeros here in SO. But not the other way !! Can you guys suggest me how to remove the leading zeros in alphanumeric text. Are there any built-in APIs or do I need to ...
7
votes
5answers
9k 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?
5
votes
6answers
212 views

What is the probability of collision with a 6 digit random alphanumeric code?

I'm using the following perl code to generate random alphanumeric strings (uppercase letters and numbers, only) to use as unique identifiers for records in my MySQL database. The database is likely to ...
5
votes
2answers
135 views

Postgresql sorting mixed alphanumeric data

sorry for my english I have a query (I am using postgresql) like this: select name from folders order by name and I get this: alphanumeric a test test 20 test 19 test 1 test 10 But I need an ...
4
votes
7answers
9k 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 2. a-z ...
3
votes
1answer
125 views

Unique alphanumeric key generator

Am developing an app in iPad. Using the app i am going to record videos and upload it into the server. I would like to generate a unique alphanumeric key to be used as the video name. IS there any way ...
3
votes
3answers
138 views

increment alpha numerically values

Like the title suggests I need to do something like so... $i++;//we all know this. $value = 'a'; increment($value);// i need this functionality //output string [ b ] ///here are some more ...
3
votes
2answers
433 views

Sorting Alphanumeric field in SQL CE (Compact Edition) version 3.5

Sorting Alphanumeric field in SQL CE (Compact Edition) version 3.5 TreeNumber is a nvarchar field with a mix of numbers and strings for the values. I want to sort these records so that the records ...
3
votes
11answers
2k views

Generate random letters and numbers together

Generate 6 characters: the first character is randomly generated from the alphabets with odd ordering in the alphabet list (A, C, E, …, Y) the second character is randomly generated from the alphabets ...
3
votes
4answers
764 views

SQL Order Alphabetically without preceding zeros for numbers less than 10

Is it possible to order alphabetically in mySQL in the following fashion: A1 A2 A3 A5 A10 A11 A20 A23 A24 Unfortunately the order that I am getting is ordered as seen below here. Notice how any ...
3
votes
4answers
562 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 user might have at ...
2
votes
2answers
635 views

MySQL: how to remove all non-alpha numeric characters from a string?

I'm working on a routine that compares strings, but for better efficiency I need to remove all characters that are not letters or numbers. I'm using multiple REPLACE functions now, but maybe there is ...
2
votes
3answers
150 views

Naturally sort a list of alpha-numeric tuples by the tuple's first element in Python

A previous stackoverflow question explains how to sort a list of strings alpha-numerically. I would like to sort a list of tuples alphanumerically by the tuple's first element. Example 1: ...
2
votes
3answers
297 views

SQL - Create Unique AlphaNumeric based on a 10-digit integer stored as VARCHAR

I'm trying to emulate a function in SQL that a client has produced in Excel. In effect, they have a unique, 10-digit numeric value (VARCHAR) as the primary key in one of their enterprise database ...
2
votes
5answers
803 views

How to generate unique six digit alpha-numeric code in Ruby

I need to generate a unique six digit alpha-numeric code. To save in my database as voucher no: for every transaction.
2
votes
3answers
202 views

Generating unique, random alpha numeric strings

I am developing an application which allows users to share a link to a simple survey. For this, I want to generate unique URLs for each survey, so having a URL like: http://myapp.com/aBcDe1F I want ...
2
votes
3answers
2k views

Oracle: a query, which counts occurrences of all non alphanumeric characters in a string

What would be the best way to count occurrences of all non alphanumeric characters that appear in a string in an Oracle database column. When attempting to find a solution I realised I had a query ...
2
votes
1answer
591 views

EditText input with pattern android

I am having a EditText in which I have to accept alphanumeric input from user which is specific to pattern, and hyphens '-' are inserted automatically. "XXX-XXX-XXXX" how to achieve that ? Is there ...
2
votes
3answers
312 views

Removing spaces and anything that is not alphanumeric

I'm trying to remove everything that is not alphanumeric, or is a space with _: $filename = preg_replace("([^a-zA-Z0-9]|^\s)", "_", $filename); What am I doing wrong here, it doesn't seem to work. ...
2
votes
2answers
154 views

How to map (large) integer on (small in size( alphanumeric string with PHP? (Cantor?)

I can't figure out how to optimally do the following in PHP: In a database, I have messages with a unique ID, like 19041985. Now, I want to refer to these messages in a short-url service but not using ...
2
votes
4answers
1k views

Alphanumeric Order By in Mysql

How can i make only numeric order by when the column containing alphanumeric characters in mysql ? column (name) is unique field. my table contains the records, id name 1 ab001 2 ab010 3 ...
2
votes
4answers
1k views

XSLT Sort Alphabetically & Numerically Problem

I have a group of strings ie g:lines = '9,1,306,LUCY,G,38,12' I need the output to be in XSLT 1.0: 1,9,12,38,306,G,LUCY This is my current code: <xsl:for-each ...
2
votes
4answers
7k 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?
2
votes
3answers
828 views

Increasing Alphanumeric value in user defined function

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 ('A000299') should return ...
2
votes
4answers
2k views

C# Method like Base64String, but only alphanumeric (no plus or slash)

is there any C# method that works similar to Convert.ToBase64String but doesn't generate anything except alphanumeric output? Thanks!
2
votes
0answers
173 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 similar to a cell phone - ...
2
votes
3answers
7k views

regex for alphanumeric word, must be 6 characters long

What is the regex for a alpha numeric word, at least 6 characters long (but at most 50).
1
vote
2answers
28 views

MySQL query with alphanumeric order

I'm trying to get a list of some products' model & all models are alphanumeric. I tried ORDER BY CAST(field_name AS UNSIGNED) and ORDER BY field_name + 0 and ORDER BY ...
1
vote
2answers
68 views

Powershell: Get path of last alphanumerically sorted file in a directory

I have a directory with the following files: Program-3.0.79.J1231.exe Program-3.0.79.J1230.exe Program-3.0.79.J1229.exe Program-3.0.79.J1228.exe etc... These files will keep updating every few ...
1
vote
2answers
74 views

How to compare alphanumeric values in Perl?

Here is my code- print $cpu_arch."\n"; if ($cpu_arch eq'AMD64') { print "Remote machine is 64bit\n"; } Depending upon the CPU architecture, $cpu_arch returns x86 or AMD64. The problem ...
1
vote
2answers
165 views

Encrypt an integer to get only numeric characters in JAVA

I have a database id that start from 1 to ... and I need encrypt this number to use for pursuit number. how to generate numeric string by encrypting the database id and decrypt it? pursuit number must ...
1
vote
4answers
87 views

need a Regex for validating alphanumeric with length 6 to 25 characters

i have created this regular expression for my form validation of password feild "/^[[A-Za-z0-9]+[A-Za-z0-9, .!@#$%^&*()_]*]{3,25}$/", it accepts all alphanumeric characters and special ...
1
vote
2answers
132 views

Regex - Without Special Characters

I'm using regex to validate username ^[a-zA-Z]+\.[a-zA-Z]{4,10}^' Unfortunately it doesn't affect if the the value contains special characters such as !@#$%^&*)(':; I would glad to get some ...
1
vote
3answers
894 views

How to strip all non alphanumeric characters from a string in c++?

I am writing a piece of software, and It require me to handle data I get from a webpage with libcurl. When I get the data, for some reason it has extra line breaks in it. I need to figure out a way to ...
1
vote
2answers
314 views

Test if two first chars typed in are alphanumeric - no regex

I have following code that needs something smart to deal with typed in chars and detection: private final MultiWordSuggestOracle mySuggestions = new MultiWordSuggestOracle(); private final ...
1
vote
3answers
228 views

PHP: escape non-alphanumeric characters

I'm trying to port a script that I wrote in bash some time ago into PHP. One particular line is about escaping all non-alphanumeric characters. In bash, I was able to do it as a one-liner as follows: ...
1
vote
1answer
410 views

Alphanumeric movement to Numeric

Alphanumeric movement to Numeric variable caused unexpected results. Here is the code fyr: DATA DIVISION. WORKING-STORAGE SECTION. 01 ...
1
vote
2answers
113 views

Creating a unique filename from a list of alphanumeric strings

I apologize for creating a similar thread to many that are out there now, but I mainly wanted to also get some insight on some methods. I have a list of Strings (could be just 1 or over a 1000) ...
1
vote
7answers
156 views

applying a filter on a string in python

I have a user typing in his username and I only want valid strings to pass through, meaning only characters in [a-zA-Z0-9]. I am pretty new to python and unsure of the syntax. Here's an example of ...
1
vote
3answers
752 views

converting a number base 10 to base 62 (a-zA-Z0-9)

I have a number in base 10. Is there anyway to translate it to a base 62? Example: echo convert(12324324); // returns Yg3 (fantasy example here) Php's base_convert can convert up to base 36 ...
1
vote
2answers
306 views

Delete until whitespace in Emacs

Is there an Emacs function to delete (forward or backwards) until the first whitespace? For example, I have the following line, and the cursor is marked by the caret: someword ?(&)!* morewords ...
1
vote
4answers
619 views

Generating alphanumeric IDs (unique strings)

How can alphanumeric IDs be generated in PHP or AS3 etc instead of the classic auto incremented numeric ID. YouTube uses this for its video IDs for example. Facebook generates long alphanumeric ...
1
vote
3answers
912 views

T-Sql - Order By on Alphanumeric

i have a list of alphanumeric tokens, say '1a', '1b', '02', '03', '10', '11', etc... Now, what's the best way to do an order by on this list of tokens? I am getting '1a', '1b', '10', '11', '02', ...
1
vote
1answer
904 views

RegEx (in JavaScript find/replace) - match non-alphanumeric characters but ignore - and +

We have been using the following js/regex to find and replace all non-alphanumeric characters apart from - and + outputString = outputString.replace(/[^\w|^\+|^-]*/g, ""); However it doesn't work ...
1
vote
4answers
804 views

php encrypting an integer to get only alphanumeric characters?

When I use some of php's encryption functions, I end up getting a few characters I don't want (+, /, =). The problem is that my application doesn't allow these in the url. I'm wondering if there's a ...
1
vote
1answer
726 views

alphanumeric and special character sorting

I wanted to know the different standards of sorting. To be more specific take the sample set: (Please note there's capitals, small letters, special characters, null values and numbers here) A a 3F ...
1
vote
4answers
752 views

Python code to use a regular expression to make sure a string is alphanumeric plus . - _

I looked and searched and couldn't find what I needed although I think it should be simple (if you have any Python experience, which I don't). Given a string, I want to verify, in Python, that it ...

1 2