tagged [regex]

RegExp in TypeScript

RegExp in TypeScript How can I implement RegExp in TypeScript? My example:

4 Aug at 02:10

Regex to match alphanumeric and spaces

Regex to match alphanumeric and spaces What am I doing wrong here?

8 Oct at 04:35

PHP String Parsing

PHP String Parsing I have string which contains something about `"amount 3 val 6, amount 7 val 8"` and so, what regular expression should I use to get array with corresponding amounts and values?

21 Jan at 17:21

How to remove extra returns and spaces in a string by regex?

How to remove extra returns and spaces in a string by regex? I convert a HTML code to plain text.But there are many extra returns and spaces.How to remove them?

11 Feb at 20:7

Regex: Remove lines containing "help", etc

Regex: Remove lines containing "help", etc I have a long document of commands. Using Notepad++ or regex, I want to delete all lines containing "help" including keyboard_help, etc. How can this be done...

29 Jun at 20:44

C# - Regex for file paths e.g. C:\test\test.exe

C# - Regex for file paths e.g. C:\test\test.exe I am currently looking for a regex that can help validate a file path e.g.:

20 Jun at 19:2

Learning Regular Expressions

Learning Regular Expressions I don't really understand regular expressions. Can you explain them to me in an easy-to-follow manner? If there are any online tools or books, could you also link to them?

7 Jan at 14:39

Regex to check if valid URL that ends in .jpg, .png, or .gif

Regex to check if valid URL that ends in .jpg, .png, or .gif I would like users to submit a URL that is valid but also is an image, ending with .jpg, .png, or .gif.

2 Mar at 03:13

RegEx: Grabbing values between quotation marks

RegEx: Grabbing values between quotation marks I have a value like this: What regex will return the values enclosed in the quotation marks (e.g. `Foo Bar` and `Another Value`)?

15 Mar at 17:32

Which one is a more reliable matching scheme, EREGI or STRIPOS?

Which one is a more reliable matching scheme, EREGI or STRIPOS? Which scheme according to you is a better one in case of matching? Is it eregi or stripos or any other method?

24 Mar at 12:38

Using C# regular expressions to remove HTML tags

Using C# regular expressions to remove HTML tags How do I use C# regular expression to replace/remove all HTML tags, including the angle brackets? Can someone please help me with the code?

25 Apr at 03:12

regex to match a single character that is anything but a space

regex to match a single character that is anything but a space I need to match a single character that is anything but a space but I don't know how to do that with regex.

25 Jul at 05:37

Explode string by one or more spaces or tabs

Explode string by one or more spaces or tabs How can I explode a string by one or more spaces or tabs? Example: I want to make this an array.

24 Nov at 21:17

Regex Query Builder

Regex Query Builder I am a C# developer, I have been looking at regular expressions (regex) and wanted to know if anyone knows about useful tools for building regular expressions - like a regex query ...

2 Jan at 10:59

how to remove char (") from the begin and the end of a string?

how to remove char (") from the begin and the end of a string? how to remove char (") from the begin and the end of a string ? ex: `"1234"567" ==> 1234"567` thank's in advance

14 Apr at 18:18

Regex: Match any punctuation character except . and _

Regex: Match any punctuation character except . and _ Is there an easy way to match all punctuation except period and underscore, in a C# regex? Hoping to do it without enumerating every single punctu...

19 Oct at 23:44

Regex remove special characters

Regex remove special characters We need a C# function which will remove all special characters from a string. Also, is it possible to change "George's" to "George" (remove both single quote and charac...

12 Feb at 08:27

I want to remove double quotes from a String

I want to remove double quotes from a String I want to remove the `""` around a String. e.g. if the String is: `"I am here"` then I want to output only `I am here`.

30 Dec at 14:21

How do I match any character across multiple lines in a regular expression?

How do I match any character across multiple lines in a regular expression? For example, this regex will match: But how do I get it to match across multiple lines?

19 Apr at 20:59

C# code to linkify urls in a string

C# code to linkify urls in a string Does anyone have any good c# code (and regular expressions) that will parse a string and "linkify" any urls that may be in the string?

17 Feb at 05:43

What does the regex \S mean in JavaScript?

What does the regex \S mean in JavaScript? What does /\S/ mean in a regex?

7 Feb at 18:28

How to remove a defined part of a string?

How to remove a defined part of a string? I have this string: "NT-DOM-NV\MTA" How can I delete the first part: "NT-DOM-NV" To have this as result: "MTA"

28 Dec at 10:1

Negative regex for Perl string pattern match

Negative regex for Perl string pattern match I have this regex: I want to match with Clinton and Reagan, but not Bush. It's not working.

12 Aug at 14:9

Regex match one of two words

Regex match one of two words I have an input that can have only 2 values `apple` or `banana`. What regular expression can I use to ensure that either of the two words was submitted?

28 Jul at 18:0

How can I add a string to the end of each line in Vim?

How can I add a string to the end of each line in Vim? I want to add `*` to the end of each line in Vim. I tried the code unsuccessfully

20 May at 14:59