This can be done without regex:
>>> string = "Special $#! characters spaces 888323" >>> ''.join(e for e in string if e.isalnum()) 'Specialcharactersspaces888323'
You can use str.isalnum
:
S.isalnum() -> bool Return True if all characters in S are alphanumeric and there is at least one character in S, False otherwise.
If you insist on using regex, other solutions will do fine. However note that if it can be done without using a regular expression, that’s the best way to go about it.
Related Posts:
- How to find all occurrences of a substring?
- This can be done without regex:
- Remove all special characters, punctuation and spaces from string
- Using strip() to clean up a string
- How do I lowercase a string in Python?
- How do I get a substring of a string in Python?
- Does Python have a string ‘contains’ substring method?
- How to read a file line-by-line into a list?
- strip(char) on a string
- How to convert list to string [duplicate]
- TypeError: a bytes-like object is required, not ‘str’ when writing to a file in Python3
- Print string to text file
- Best way to convert string to bytes in Python 3?
- Best way to convert string to bytes in Python 3?
- Does Python have a string ‘contains’ substring method?
- ‘str’ object does not support item assignment
- How do I append one string to another in Python?
- How can I split and parse a string in Python?
- whitespace in regular expression
- How to read a text file into a string variable and strip newlines?
- Convert bytes to a string
- How to print like printf in Python3?
- Regex: AttributeError: ‘NoneType’ object has no attribute ‘groups’
- How to read a text file into a string variable and strip newlines?
- Python convert tuple to string
- write() versus writelines() and concatenated strings
- Why is it string.join(list) instead of list.join(string)?
- Why is it string.join(list) instead of list.join(string)?
- Best way to strip punctuation from a string
- Split string with multiple delimiters in Python [duplicate]
- How to check if the string is empty?
- Does “\d” in regex mean a digit?
- How do I convert a list of ascii values to a string in python?
- How to check whether a str(variable) is empty or not?
- Python TypeError: not enough arguments for format string
- What does the ‘b’ character do in front of a string literal?
- How to add a string in a certain position?
- Check string “None” or “not” in Python 2.7
- What does the ‘b’ character do in front of a string literal?
- Best way to replace multiple characters in a string?
- Convert columns to string in Pandas
- How to delete a character from a string using Python
- Python: Get the first character of the first string in a list?
- How to convert string to binary?
- Convert hex to binary
- Quoting backslashes in Python string literals
- Python string class like StringBuilder in C#?
- How to check if a string is a substring of items in a list of strings?
- Best way to replace multiple characters in a string?
- How do I remove a substring from the end of a string?
- Detect whether a Python string is a number or a letter
- Finding all possible permutations of a given string in python
- How do I append one string to another in Python?
- AttributeError: ‘list’ object has no attribute ‘replace’ when trying to remove character
- AttributeError: ‘list’ object has no attribute ‘replace’ when trying to remove character
- ValueError: cannot index with vector containing NA / NaN values
- How to convert string to binary?
- Converting from a string to boolean in Python?
- How to check if type of a variable is string?
- How do I format a string using a dictionary in python-3.x?
- Removing numbers from string
- Count the number of occurrences of a character in a string
- How to find char in string and get all the indexes?
- How can I print variable and string on same line in Python?
- Convert hex string to int in Python
- How can I check if character in a string is a letter? (Python)
- How can I find the first occurrence of a sub-string in a python string?
- Replacing a character from a certain index
- AttributeError: ‘list’ object has no attribute ‘lower’ gensim
- Find the nth occurrence of substring in a string
- How to convert ‘binary string’ to normal string in Python3?
- Pandas error “Can only use .str accessor with string values”
- Python: Converting string into decimal number
- How to remove parentheses from string [duplicate]
- TypeError: expected string or buffer
- Convert a Unicode string to a string in Python (containing extra symbols)python string unicode type-conversion
- Create nice column output in python
- TypeError: decoding str is not supported
- AttributeError: ‘str’ object has no attribute ‘items’
- How to pad zeroes to a string?
- How does str(list) work?
- What does this Django regular expression mean? `?P`
- What is the difference between a string and a byte string?
- How do I convert a string to a double in Python?
- How can I copy a Python string?
- How to strip a specific word from a string?
- Split string using a newline delimiter with Python
- Checking if a string can be converted to float in Python
- Remove specific characters from a string in Python
- Python cant convert ‘list’ object to str error [closed]
- Python regex match space only
- Case insensitive regular expression without re.compile?
- Python code to remove HTML tags from a string
- How can I check if a string contains ANY letters from the alphabet?
- Cannot concatenate ‘str’ and ‘float’ objects?
- How to repeat individual characters in strings in Python
- Find index of last occurrence of a substring in a string
- When to use %r instead of %s in Python? [duplicate]
- Python convert tuple to string
- TypeError: coercing to Unicode: need string or buffer