Quantcast
Channel: Solved » regex
Browsing latest articles
Browse All 14 View Live

JavaScript String Replace Newline Character

I have a text in a textarea and I read it out using the .value attribute. Now I would like to remove all linebreaks(the character that is produced when you press enter) from my text now using .replace...

View Article


Regular Expression for Alphanumeric and Underscores

Trying to check input against a regular expression. The field should only allow alphanumeric characters, dashes and underscores and should NOT allow spaces. However, the code below allows spaces. What...

View Article


How Do I Count the Number of Occurrences of a Char in a String

This question already has an answer here: How would you count occurrences of a string within a string? 25 answers I am trying to get the number of occurrences of a certain character such as & in...

View Article

Regex for Numbers Only JavaScript

hash = window.location.hash.substr(1); var reg = new RegExp('^[0-9]$'); console.log(reg.test(hash)); I get false on both “123” and “123f”. I would like to check if the hash only contains numbers. Did...

View Article

Regex for Numbers Only PHP

I know this might sound as really dummy question, but I’m trying to ensure that the provided string is of a number / decimal format to use it later on with PHP’s number_format() function. How would I...

View Article


Regex for Numbers Only C#

I haven’t used regular expressions at all, so I’m having difficulty troubleshooting. I want the regex to match only when the contained string is all numbers; but with the two examples below it is...

View Article

Regular Expression Field Validation in jQuery

I am using the jQuery validation plugin. Great stuff! I want to migrate my existing ASP.NET solution to use jQuery instead of the ASP.NET validators. I am missing a replacement for the regular...

View Article

Regular Expression Validation in jQuery

I’m not too sure about how to do this. I need/want to validate email addresses by regex using something like this:...

View Article


Matching a Space in Regex

I need to match a space character in php regex. Anyone got any ideas? EDIT I mean like “gavin schulz” the space in between the two words. I’ll make another clarification. I did try and find more info...

View Article


Match Space in Regex Java

The Java API for regular expressions states that \s will match whitespace. So the regex \\s\\s should match two spaces. Pattern whitespace = Pattern.compile("\\s\\s"); matcher =...

View Article
Browsing latest articles
Browse All 14 View Live