string with alphabets and numbers
1
vote
1answer
31 views
Regex pattern to split the string based on numeric characters
I'd like to have a regex pattern that splits the string based on the numbers present in them
50cushions => [50,cushions]
30peoplerescued20children => [30,peoplerescued,20,children]
...
1
vote
4answers
35 views
Removing only alpha duplicates
In Python, I would like to remove duplicate letters from a string, but not numbers or spaces. I came up with:
result = []
seen = set()
for char in string:
if char not in seen:
...
1
vote
1answer
77 views
remove all non-alphanumeric characters from lua string
I checking string for a non-alphanumeric char.
if(str:match("%W")) then
--make str alpha-numeric
end
How to remove all non-alphanumeric chars from string using lua?
0
votes
0answers
20 views
A quick way to fill ASCII arrays in C-like languages
Maybe it's a bit elementary for most, but for anyone having trouble filling separate arrays with ASCII characters (lower, upper, numbers), or writing a lot of code for it, here's a quick way I've ...
-1
votes
1answer
44 views
Oracle: max value column alphanumeric
The problem I can not get the latest code. I need it to generate the next.
Example:
Last:
D11.0602.166
Next:
D11.0603.166
I've tried:
MAX
TRANSLATE
CONVERT
MID
VAL
0
votes
2answers
81 views
excel adding 1 on all alphanumeric string
I need to make a new product code for 6000+ records. In order to do that fast and decipher it in the future, I need to put a formula from the old code to the new code.
sample codes:
yas111
bd224
...
-1
votes
4answers
586 views
regular expression to allow spaces between words
I am not really good with regular expression but I found this by googling. I want a regular expression that prevent symbols and allow only letters and numbers. This regex works great but it doesn't ...
0
votes
1answer
197 views
Backspace/Delete not working in Jquery alphanumeric validation [duplicate]
Backspace/Delete not working in Mozilla Firefox for Jquery alphanumeric validation .
<input type="text" id="myTextBox" />
$("#myTextBox").bind("keypress", function(event) {
var charCode = ...
0
votes
2answers
72 views
word boundary that rejects leading/end non-alphanumeric character
Right now I'm learning regular expression on Java and I have a question about the word boundaries. So when I looking for word boundaries on Java Regular Expression, I got this \b that accepts word ...
0
votes
5answers
103 views
Complex sorting of Java ArrayList [duplicate]
I have the following strings stored in trendList variable. I do a sort, but the data doesn't come out sorted properly.
i.e. ACLK_SCRN_200MHZ_DATAB_S0_P1:8 should come before ...
0
votes
2answers
93 views
Case sensitive Comparison between two arrays having alphanumeric and parenthesis, apostrophe in perl
Is there any way of two arrays comparing two arrays in perl having exactly equal number of elements, comparing the alphanumeric, symbols like {},"",hex with case sensitive..?
To be plain, i should ...
0
votes
1answer
177 views
Removing special characters from gridview data
I have a gridview object that I am using to bind to a datasource. Upon the selectedIndexChanging event of the gridview, I would like to bring the data shown in the gridview into the textboxes on the ...
1
vote
0answers
43 views
Sub-Class of JTextField , that only Accepts Alphanumerical Value and . (dot) [duplicate]
Possible Duplicate:
jTextField accept only alphabet and white space
Ey!
i have a Custom JTextField (extends from JTextField) , this CustomJTextField ,mainly has the JtextField Methods in ...
1
vote
3answers
468 views
Textbox that MUST contain both numbers and letters? c#
I was wondering is there any way to make sure that a user enters both numbers and letters into a textbox and if not prompt a message? I have it as follows:
if(!Regex.IsMatch(string, @"^[a-zA-Z]+$") ...
0
votes
2answers
228 views
PHP Remove All Non-alphanumeric Characters Except Apostrophes
$keywords = explode("\n",$_POST['keywords']);
//Inserting into Database
foreach($keywords as $key => $keyword){
$keyword = strtolower(trim($keyword));
$keyword = ...
0
votes
0answers
82 views
Passing Alphanumeric Parameter to javascript function
when i call a javascript function say, onclick="doSome(this.value)" where this.value=123, it works fine.
But if i call onclick="doSome(this.value) where this.value=A123, it is not working. How to ...
0
votes
1answer
98 views
How many alphanumeric charecters can be embedded in a QR Code?
As per the Wiki below
QRC Storage Data
the maximum number of alphanumeric charecters that can be stored is 4,296. But while trying it out, I'm unable to proceed for more than approx 2220 charecters ...
2
votes
3answers
292 views
converting alphanumeric string to byte in java? [duplicate]
Possible Duplicate:
Convert a hex string to a byte in Java
Here, I need to convert alphanumeric String to byte value ,for example:
String str ="1b" to byte value.I tried by using ...
1
vote
2answers
87 views
A MySQL field value starting with a Numeral then followed by characters is treated as Numeric
I have a users table(MySQL) and the unique id is an AI field(user_id). I have a function to get the name of a user from the database, and the only parameter passed to it is the user_id.
Lets say the ...
1
vote
2answers
191 views
Strip down everything, except alphanumeric and European characters in PHP
I am working on validating my commenting script, and I need to strip down all non-alphanumeric chars except those used in Western Europe.
My plan is to regex out all non-alphanumeric characters with:
...
0
votes
1answer
178 views
Incremental alphanumeric Primary Key
Hello I'd like to have an incremental alphanumeric key (primary key) in one of my tables. I'd like it to be BR10000, BR10001, BR10002, and so on. Any ideas? I've made some researches on google, but I ...
0
votes
0answers
52 views
How to verify that an uitextfield contain both alphabets and number
I want to create an password uitextfield which consists of both alphabet and numbers.If any alphabet or number is not entered then an alert should be shown. And uitextfield should not allow special ...
3
votes
1answer
405 views
Alpha numeric sorting in C#
I have CSV data like this:
Number;Version
1;AA.1
1;A01.1
1;A01.2
1;Z.7
Here, I need to sort the Version column descending like following:
Number;Version
1;AA.1
1;Z.7
1;A01.2
1;A01.1
So if you ...
1
vote
2answers
96 views
Extract arbitrary data values from a std::string C++
I have strings like this
10z45
9999i4a
Basically int-char-int-optionalchar
I want to do this function prototype
void process(std::string input, int &first, char &c, int &last, bool ...
-2
votes
1answer
1k views
regex for validating only alphanumeric characters full stop, comma, colon, and semicolon [closed]
I am very new to regex and JavaScript.
I need a regex for validate only alphanumeric characters and full stop (.), comma(,), colon(:), and semicolon(;).
-1
votes
3answers
142 views
Generating unique 5 alpha-numeric IDs in HTML/PHP [duplicate]
Possible Duplicate:
PHP function to generate v4 UUID
May i know how or what is the simplest HTML/PHP codes to generate 5 alpha-numeric randomizer IDs? I have seen other question similar to ...
0
votes
1answer
589 views
generating a alphanumeric code using javascript in code generation, by clicking a button in form
Hi I was wondering if it is possible to pass the alphanumeric code (generated by javascript) in to the html textbox by clicking a html button?
So what I mean is, I have a textbox and a button, if I ...
0
votes
2answers
1k views
JavaScript regular expression ( alphanumeric characters with _-)
I am having trouble forming regular expression containing all alphanumeric characters and one or two specific characters, such us _ or -.
This expression works for all alphanumeric characters ...
0
votes
3answers
102 views
java - add length constraint to regex
i need a regex to match alphanumeric ASCII strings of length 11. currently i'm using this regex: ^\p{ASCII}*$.
is there a way to add a length constraint to it?
0
votes
1answer
119 views
Javascript - Regex for comma-seperated alphanumeric
I need regex for
validating comma seperated alphanumeric String with length of 3-5
chars.
string may or may not contain commas.
each string will MUST have 3 to 6 numbers and One M in ...
2
votes
2answers
763 views
Convert Byte String to alpha-numeric char array in java?
My question is, I guess, quite simple :
How to convert a Byte to alpha-numeric char array (String) in java ?
I tried this but it gives me back an error on netbeans :
byte[] b = ...
0
votes
3answers
1k views
Lua: How to check if a string contains only numbers and letters?
Simple question may have a simple answer, but my current solution seems horrible.
local list = {'?', '!', '@', ... etc)
for i=1, #list do
if string.match(string, strf("%%%s+", list[i])) then
...
5
votes
1answer
253 views
How to generate a continuous string?
I want to generate, in python (without a dictionary), a list of string from aaa-zzz and then output a txtfile such as this (note, the ... is short for the strings in between):
aaa
aab
aac
aad
...
aaz
...
1
vote
3answers
811 views
Counting alphanumeric characters in a text file in C++
I wrote a program for counting the number of alphanumeric characters in a text file. However, the number it returns is always larger than the number that online character counters return.
For ...
2
votes
4answers
862 views
Encrypting a string of numerics into a string of alphanumerics
I have a string of numbers that i would like to make shorter for use in a URL. This string always consists of numbers only. For example: 9587661771112
In theory, encrypting a numeric string into an ...
7
votes
2answers
445 views
“Alphanumeric” hash - A-Z, 0-9
I'm looking for a function that will generate an "alphanumeric hash". Given a source string, it produces a determinate result string that can contain any letter a-z or digit 0-9, and cannot be ...
0
votes
3answers
174 views
How to deal with non alpha numeric characters asp.net vb?
I am processing a lot of CSV files that have people data and occasionally names are used non-alpha numeric characters like á and those all become � symbols in the datatable. How do i prevent this ...
3
votes
4answers
1k views
Elegant way to count alphanumeric chars in a string?
I am looking for an elegant way, preferably a short linq expression, to count how many alphanumeric chars a given string contains.
The 'boring' way I do it now is this:
int num = 0;
for (int i = 0; ...
0
votes
4answers
4k views
jquery alphanumeric validation
$('#reg_submit').click(function () {
var reg_password1 = $('#reg_password1').val();
letters = /([a-z])([0-9])/;
var errorMessage = '';
if ( ! reg_password1.value.match(letters) )
{
...
0
votes
1answer
89 views
In mysql is there a way to query for a string in the db but only do an alphanumeric comparison (ignore special chars)
I'm trying to figure out whether it is possible to query a mysql table for a string but have it ignore special characters in the field that is querying in the db....
A better way of clarifying what ...
1
vote
2answers
55 views
query “…WHERE $string”… $string='b5KlL4znM ' but query returns empty unless “…WHERE 'b5KlL4znM ' ”
I am trying to get some information from my table, but the query returns empty when I call it this way:
$varchar_string = mysqli_real_escape_string($link, $_GET['code']); //the code is b5KlL4znM in ...
0
votes
2answers
575 views
alphanumeric is not working in jquery [duplicate]
Possible Duplicate:
How to check for alphanumeric characters
Hai i validate the password in jquery using alphanumbercic.It validate only the letters,Suppose i typed only the numbers it ...
0
votes
0answers
102 views
Exclude all normal alphanumeric character from a mixed chinese-and-alphanumeric character word list
I have a list of chinese characters and normal alphanumeric characters, mixed together, and I want to get rid of any element that contains an alphanumeric character. Is there a simple way to do this? ...
1
vote
1answer
584 views
CakePHP validation rule: alphanumeric with spaces
I have a description field in my database which accepts alphanumeric characters and spaces, as well as new line characters. I want to set that validation rule in my Server model.
Here's what I have ...
1
vote
5answers
766 views
C++: how to check if a string is all lowercase and alphanumerics?
Is there a method that checks for these cases? Or do I need to parse each letter in the string, and check if it's islower(letter) and is a number/letter?
thanks!
4
votes
6answers
7k views
Regex for checking if a string is strictly alphanumeric
How can i check if a string has only numbers and alphabets(alphanumerics)
0
votes
3answers
1k views
Return rows where first character is non-alpha
I'm trying to retrieve all columns that start with any non alpha characters in SQlite but can't seem to get it working. I've currently got this code, but it returns every row:
SELECT * FROM TestTable ...
1
vote
2answers
240 views
Numeric sort of list of dictionary objects
I am very new to python programming and have yet to buy a textbook on the matter (I am buying one from the store or Amazon today). In the meantime, can you help me with the following problem I have ...
0
votes
3answers
1k views
How to do alpha numeric sort perl?
I have a file which looks like this:
80,1p21
81,19q13
82,6p12.3
83,Xp11.22
84,3pter-q21
86,3q26.33
87,14q24.1-q24.2|14q24|14q22-q24
88,1q42-q43
89,11q13.1
90,2q23-q24
91,12q13
...
2
votes
3answers
3k views
How do I check if a string only contains alphanumeric characters and dashes?
The string I'm testing can be matched with [\w-]+. Can I test if a string conforms to this in Python, instead of having a list of the disallowed characters and testing for that?



