The non-alphanumeric tag has no wiki summary.
1
vote
1answer
67 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
1answer
109 views
SQL Server 2008 select statement that ignores non alphanumeric characters
I have an interesting SQL Server search requirement.
Say I have a table with Part Numbers as follows:
PARTNO DESCRIPTION
------ -----------
ABC-123 First part
D/12a92 Second Part
How can ...
1
vote
0answers
46 views
Dynamically set asp.net login password requirements
I have multiple companies using my website. A few of them are complaining that their customers can't understand what a non-alphanumeric character is (though we give examples in bright red letters) and ...
-1
votes
7answers
779 views
Check if a string contains a non-alphanumeric character [closed]
I am trying to write a function which takes a string as an argument and checks if that string contains only one non-alphanumeric character, if this is the case then return true, if not, return false.
...
0
votes
0answers
317 views
Why does Membership.GeneratePassword give me Nonalphanumeric when I specifiy 0?
I used
Membership.GeneratePassword(10, 0)
in my C# application code. The GeneratePassword method Generates a random password of the specified length.
The second argument specifies the the ...
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
...
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 ...
0
votes
2answers
122 views
Removing non-alpanumeric characters from an ordered collection of objects (list) in R
I have a question about removing non-alphanumeric characters from a list in R. I have a list will all sorts of odd characters, blanks, etc. and would like to remove them. I'm generally able to remove ...
2
votes
5answers
2k views
Regular Expression for a password with at least 8 characters and at least 1 non-alphanumeric character(s)
I am trying to make a check in PHP if a user changes their password their new password must be 8 or more characters and with at least 1 non-alphanumeric password. How should I check this and what ...
-2
votes
3answers
2k views
How to match with regex all special chars except “-” in PHP?
How can I match all the “special” chars (like +_*&^%$#@!~) except the char - in PHP?
I know that \W will match all the “special” chars including the -.
Any suggestions in consideration of ...
0
votes
1answer
970 views
How can I search for rows that contain a non-alphanumeric or space character?
I want to search a table for all rows that contain a non-alphanumeric and non-space character in a specific field. What I have so far:
SELECT *
FROM myTable
WHERE myField LIKE '%[^a-zA-Z0-9]%'
As ...
1
vote
7answers
423 views
filter non-alphanumeric “repeating” characters
What's the best way to filter non-alphanumeric "repeating" characters
I would rather no build a list of characters to check for. Is there good regex for this I can use in PHP.
Examples:
...
7
votes
1answer
4k 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 ...
6
votes
2answers
10k views
SQL Server 2008 query to find rows containing non-alphanumeric chararacters in a column
I was actually asked this myself a few weeks ago, whereas I know exactly how to do this with a SP or UDF but I was wondering if there was a quick and easy way of doing this without these methods, I'm ...
27
votes
5answers
23k views
Replacing all non-alphanumeric characters with empty strings
I tried using this but didn't work-
return value.replaceAll("/[^A-Za-z0-9 ]/", "");