Tagged Questions
-1
votes
0answers
10 views
JavaScript - Regular Expression that validates one +/- at begning and one decimal point
I want a regular expression that can validate one +/- at begning, and one decimal point in the string using test() object method.
1
vote
4answers
43 views
regular expression to unlink html code with javascript
I'm sorry,I can't believe this question is not solved in stackoverflow but I've been searching a lot and I don't find any solution.
I want to change HTML code with regular expressions in this way:
...
0
votes
1answer
38 views
How to allow set of special characters in existing regex?
We have regex to validate password with one digit, one upper case letter and one lower case letter. Regex is:
^\w*(?=\w*\d)(?=\w*[a-z])(?=\w*[A-Z])\w*$
This regex will not allow any special ...
0
votes
3answers
49 views
regex to filter whenever 4 alphabetical characters are present consecutively
Whenever 4 alphabetical characters are written in a row it should not be allowed.
eg:
ABCD: error
ABC1: allowed
ABC1233...: allowed
As soon as the 4th alphabetical character is typed it should ...
0
votes
0answers
66 views
parsing key/value pairs from string
I'm parsing the body text from incoming emails, looking for key/value pairs.
Example Email Body
First Name: John
Last Name:Smith
Email : john@example.com
Comments = Just a test comment that
may span ...
0
votes
0answers
61 views
JavaScript Regular Expression Different Behavior for Same Test
I am using a JavaScript regular expression to mark form fields as invalid. I have a form where I am checking for special characters, as they are not allowed in the form field value.
Here is the HTML ...
0
votes
2answers
29 views
IE8 is not recognizing my regular expression
I'm trying to parse an AJAX response and get the id of the body tag. I can't do this via jQuery, though, because jQuery can't emulate a DOM response for a body tag.
I've split this into many lines to ...
3
votes
3answers
54 views
Split by regex yield “undefined”
I have a code which extract query string parameters :
So ( for example) if the window url is :
....&a=1&.....
--The code first using split on & and then do split on the =
however , ...
2
votes
1answer
34 views
How to match a word in a string using regex and perfoming a specific task on each match in javascript
I have a written a function that matches a .filter() clause in my query, but this functions matches the word just one time and then does not match for further occurrence.
function ...
8
votes
1answer
61 views
Prevent tainting properties of the RegExp constructor in JavaScript
This is a bit of a conundrum, I have an idea of how I might be able to fix it but I'm wondering if there's a (much) easier way.
In short, whenever a regular expression is executed in JavaScript, ...
1
vote
2answers
30 views
Javascript regex replace single slash in to double slash?
Javascript regex replace single slash into double slash not for replace double slash in a string?
var tempPath ="//DocumentImages//Invoices//USD//20130425//I27566554 Page- ...
2
votes
2answers
45 views
Password RegEx - not working
I need a RegEx for a password that must contain:
at least one uppercase character
at least one lowercase character
at least one digit
at least one symbol character out of: ...
0
votes
1answer
44 views
Check pattern in javascript
I Have next pattern:
[a-z[A-Z]а-я[А-Я][0-9]їЇіІєЄ[-][,]_"/\ ]{0,483}
<input
id="<?= $field['id'];?>"
name="input"
<?php if (isset($field['regex'])) echo ...
0
votes
1answer
59 views
Javascript: Convert string path to a formatted array
So I am trying to use the github api and convert it to use for dynatree.
I am looking to use javascript. But if it's easier done in Ruby, ClojureScript etc that could work as well.
So Github api ...
1
vote
2answers
35 views
Javascript regex split reject null
Is it possible to make a JavaScript regex reject null matches?
Can the String.split() method be told to reject null values?
console.log("abcccab".split("c"));
//result: ["ab", "", "", "ab"]
...
0
votes
4answers
79 views
Add space after slashes that are not part of html tags
I want to add a space after each slash (/) character that is not part of an html tag. So if the content of an element looks like:
<strong>Occupational/technical/eduction/training ...
-3
votes
3answers
59 views
Get an attribute from JSON object
EDIT: As pointed out I have the following JSON object:
Object {name: "red", percent: 36, rgb: "rgb(216,28,63)"}
and I need to extract the percent number and the rgb numbers into 2 separate ...
0
votes
1answer
22 views
Can't get the RegEx right
The function checks out and everything works, I'm really just having trouble getting a pattern search that fits what I want. I'm trying to get a handle on RegEx's but they're a bit confusing to be ...
0
votes
2answers
28 views
Debugging a Javascript RegExp Regular Expression: Validation Hangs on Amazon URL
In using Javascript to validate a URL, I used the following code from an SO answer:
function validateURL(textval) {
var urlregex = new RegExp(
...
1
vote
2answers
83 views
Why my Regex let me write “,” (Comma)?
I have a javascript regex function code above:
function AcceptDigits(objtextbox) {
var exp = /[^\d{1,3}]/g;
objtextbox.value = objtextbox.value.replace(exp, '');
};
Always that I write a ...
0
votes
3answers
53 views
Regex match conditional but dont return it
Here I am trying to get something clear on regexes.
I've created this regex:
a.match( /(@|#)(.*?)(\s|$|\:)/g )
It matches all users and hastags in a tweet.
Problem is they return the condition( ...
0
votes
1answer
56 views
Javascript Date Format Convertion
My objective to get the date in day month year format from a textbox and convert it to mm/dd/yyyy format so that i can compare dates
var userDate = document.getElementById("dateOfJourney").value; ...
8
votes
7answers
814 views
\d only matchs 0-9 digits?
As far as I know, \d should matchs non-english digits, e.g. ۱۲۳۴۵۶۷۸۹۰ but it doesn't work properly in JavaScript.
See this jsFiddle: http://jsfiddle.net/xZpam/
Is this a normal behavior?
-7
votes
0answers
28 views
Please give me a javascript regular expression for following string? [closed]
Given string "2010-UET-GDCB-LHR-42"
at last where 42 is there any 2 digit number can be there. as from 01 - 90.
2
votes
2answers
62 views
Custom RegEx needed
Using javascript, I need to parse the HTML of a page and replace all occurrences of ABC with ABC that occur within a content block such as <p>ABC Company lorem ipsum</p> would be changed ...
0
votes
2answers
44 views
How to split a String by escaping text which are in double-quotes [duplicate]
I have to split an input comma separated string and store the result in an array.
Following works great
arr=inputString.split(",")
for this example
John, Doe =>arr[0]="John" ...
0
votes
4answers
60 views
Matching a Forward Slash with a regex
I don't have much experience with JavaScript but i'm trying to create a tag system which, instead of using @ or #, would use /.
var start = /#/ig; // @ Match
var word = /#(\w+)/ig; //@abc Match
...
1
vote
2answers
43 views
Javascript test method not working ( as expected )
Regular expression
[A-Za-z_-]+
should match strings that only have upper and lower case letters, underscores, and a dash
but when I run in chrome console
/[A-Za-z_-]+/.test("johmSmith12")
...
-3
votes
1answer
51 views
How can I split a string and keep the delimiter? [closed]
How can i convert the string
str = 'a1b22c3';
to an array that looks like "a1; b22; c3" in jQuery?
arr = str.split("(?<=/[a-zA-Z]/)"); // DOES NOT WORK
Thank You!
0
votes
4answers
70 views
RegEx Javascript replace?
I'm trying to make a filter which has a lot of options that get listed in the top of the filter box, now, I'm trying to add the countries and I decided to use regex. But I can't get it to work, for ...
1
vote
2answers
17 views
JS analogue for Excel's regex
I've got an Excel document which uses regex. The expression is like this:
*<*>*
* is any array of symbols (including empty one).
There are some matching strings examples:
abc<>abc
...
1
vote
3answers
49 views
Validate jquery regex - number start with 931
I need to validate number that use inputs into input box.
Number must be exactly 12 characters long and start with 931.
var reg = /^931[0-9]$/;
var val = $("#sms_number").val();
if (val.length === ...
0
votes
2answers
35 views
How to downcase all char and uppercase only the first characters via js?
Now I have this regex:
tSzoveg = tSzoveg.replace(/\b[A-Z]{2,}\b/,'');
It is almost that I want. I want to convert this: THIS IS MINE, NOT YOURS. to this: This is mine, not yours.
How can I convert ...
0
votes
1answer
66 views
RegExp in TypeScript
How can I implement Regexp in TypeScript?
My Example:
var trigger = "2"
var regex = new RegExp('^[1-9]\d{0,2}$', trigger); // where I have exeption in Chrome console
0
votes
1answer
50 views
Javascript Regex for Employee Code prefix validation
I want a single line regex that will check that a string starts with alphanumeric characters followed by a special character ( ) -_ /, and within these special character there can be any alphanumeric ...
0
votes
3answers
38 views
Regex to remove spaces between '[' and ']'
I have been breaking my head on this for sometime now.
In javascript I have a string expression where I need to remove the spaces between '[' and ']'.
For example the expression can be :-
"[first ...
-1
votes
1answer
33 views
Regex error in Netbeans not present in other editors
I have the following regular expression that works fine in my application code and other code editors have not reported a problem with it. It is used to validate a password.
...
2
votes
3answers
42 views
conversion of string containing times to 24-hour times I can do math with - jQuery
I am trying to find a way in jQuery/javascript to reliably convert strings like these:
"10:30 am – 11:00 pm" or this "6:45 am – 9:50 pm"
into two pieces each, 1030 and 2300 or 645 and 2150 ...
0
votes
2answers
21 views
imacro filter spaces from string var
i have a string var
1111 2222 3333 4444
and i want to clear the spaces and return
11112222233334444
im trying to use
SET !VAR1 EVAL(" parseFloat(\"{{!VAR2}}\") ")
but it just returns 1, i ...
0
votes
0answers
29 views
Creating a regex to parse html to MXML syntax
I searched a lot over stackoverflow and found very interesting that's includes:
How to create a Regular Expression for a span attribute?
And
Javascript regex to replace text div and < ...
0
votes
4answers
42 views
How do I write a regex to search for items within UA-Parser?
I am using UA-Parser to create a table of devices for analytics...I have a csv of user-agent strings from our server. I am using the stock UA-Parser for Node package (ua-parser-js.)
However, I am ...
1
vote
1answer
14 views
Removing a timestamp with a JS regular expression
So I'm beginner with js and regexps are a sore spot for me. I need to remove a timestamp from my dropdowns. Here is how it appears:
<option value="Aqua">
<span>Aqua - Available to ship ...
1
vote
0answers
45 views
Regex for finding all text urls but not in images src
I'm replacing all text urls on page into clickable.
When i do this it also replaces links in 'src' attribute
of images (which is not desired)
My regex is this
...
0
votes
2answers
72 views
Javascript Regular Expression detect all the Phone Number from the page source
Anyone can help me how to do it ?
My current one is (I find it on somewhere):
...
3
votes
2answers
83 views
How can I exclude “[” and “]” in a match like “[abc]”?
I have the following string:
[a] [abc] test [zzzz]
I'm trying to get an array like so:
[0] => a
[1] => abc
[2] => zzzz
I've tried the following code:
var string = '[a] [abc] test ...
4
votes
2answers
141 views
Automatically paraphrasing sentences in JavaScript
In JavaScript, is it possible to automatically replace a regular expression in a sentence with a randomly generated match of that regular expression? I'm trying to use this approach to automatically ...
1
vote
3answers
58 views
Javascript RegEx: validate date time
I am not very good with regex. I am being frustrated by a regular expression.
Example:
I have the following date time: 05/16/2013 12:00 am
I need a javascript regex that respect this format: ...
0
votes
3answers
35 views
Split each string from any given paragraph in javascript
I have a textArea. I am trying to split each string from a paragraph, which has proper grammar based punctuation delimiters like ,.!? or more if any.
I am trying to achieve this using Javascript. I ...
2
votes
3answers
50 views
Turning text with # symbols into links in javascript
I was wondering how would I do the following using Javascript.
Suppose I had a text like the following
var test = '#test is a #cool #place';
and I want the following
<a ...
1
vote
2answers
45 views
HTML & Regex, how to match text inbetween commas with keyword
Let us say we have <b>Location: </b> UK, England, London <br>
To select this line with RegEx im using (Location:+.*?<br\/?>), which is doing the job but what i need to do is ...






