11
votes
4answers
488 views

Can someone break this lambda expression down for me?

I'm looking at the solution from Token Replacement and Identification: string result = Regex.Replace( text, @"\[%RC:(\d+)%\]", match => dict[int.Parse(match.Groups[1].Value)]); And ...
0
votes
1answer
42 views

Regex to match pipe (|) or end of line

I have the following regex to match name-value pairs: ^(?<NameValue>(?<Name>[A-Z][\w]*):(?<Value>[\w]*)(?=(\||\z)))+$ I trying to match the pipe character or end of line. ...
0
votes
2answers
72 views

Number of conditions hit in a Regex containing multiple rules seprated by OR condition

I am stuck in the below problem. Please help me solve it. I have a Regex with OR conditions in it. I want to find the number of conditions satisfied out of all the conditions that are present in the ...
0
votes
1answer
34 views

RegEx is not doing what I want

I want to retreive a part of a string, my question is if I can get the correct string without touching the matched string (substring or splitting), I know is easy to do a split/substring but I want to ...
2
votes
4answers
32 views

Non-greedy regex quantifier gives greedy result

I have a .net regex which I am testing using Windows Powershell. The output is as follows: > [System.Text.RegularExpressions.Regex]::Match("aaa aaa bbb", "aaa.*?bbb") Groups : {aaa aaa bbb} ...
0
votes
3answers
87 views

why does \B works but not \b

Wanted to match a word that ends with # like hi hello# world# I tried to use boundary \b\w+#\b and it doesn't match.I thought \b is a non word boundary but it doesn't seem so from this case ...
0
votes
2answers
58 views

Canadian postal code regex?

In the postal code field only the following format should be valid. B1C 2B3 or B1C3D3 how to write a regex for this? Edited: ^([a-zA-Z]\d[a-zA-z]( )?\d[a-zA-Z]\d)$ This is my regex but it ...
-2
votes
1answer
31 views

VB.Net Regex - I search a Pattern

I am searching a Pattern for Regex that Matches every single letter in a String. I have following Strings: Given string --> wanted string - 225S225M --> SM - 225S225M225L --> SML Please, ...
1
vote
1answer
28 views

Expression to include by file name but exclude by same folder name

I'm trying to figure out how to configure VS Code Coverage Run Settings to include only target libraries but not test libraries and not 3rd party libraries: Syntax is the following: <Include> ...
0
votes
1answer
24 views

Condense initials/abbreviations with regex (or something else?)

I'm implementing a fuzzy lookup tool, and I think I can improve results by collapsing separate initials into a single token, e.g. "A B C Warehouse" becomes just two tokens: "ABC" and "Warehouse". In ...
0
votes
2answers
89 views

Regular expressions: How to remove all “R.G(*******)” from a string

There are several strings, and I wanna to remove all "R.G(**)" from these strings. For example: 1、Original string: Push("Command", string.Format(R.G("#{0} this is a string"), accID)); Result: ...
0
votes
3answers
29 views

Change a url parameter value

I have a string that contains a URL i.e. .../details?fname=peter&lname=smith&... Is there a way to replace the lname parameter value in the URL with another? Keeping in mind that lname value ...
0
votes
2answers
41 views

RegEx for string starts with numbers and followed by letters

I want Regular expression for such inputs. 1 1a 1b 1c 1d 2 2a 2b 2c But if i write following inputs then it should not allow. a b c The string must start with 1 or 2 (only once and ...
2
votes
3answers
24 views

Trouble with matching domain at the front and getting video id

I am trying to modify the following regex to enforce that the domain is either youtube or youtu.be. This original regex is meant to provide in the 2nd group the id of the video for watching. E.g. ...
0
votes
3answers
51 views

how to extract string between two symbols

i have a string like this *PMGFEC« 1.1GURRALA/KALPANA*ADT 2.1GURRALA/BHARGAVSRIRAM REDDY*ADT 3.1GURRALA/TEJASVI REDDY*CNN ...
0
votes
3answers
77 views

Regular Expression validator not working in ASP.NET MVC 4

I'm new to .net and I'm stuck with a problem I want to validate my password field ,The password must be a alphanumericstring with special symbols and I wrote a code for that which is given below ...
1
vote
6answers
71 views

String substring or reg expr

I have got a problem with getting three params from console. For example the user enter to the console so line: '/s:http://asdasd.asd /e:device /f:create' string params = Console.ReadLine(); // ...
2
votes
2answers
102 views

.Net Regex performance issues

I have some output to a RichTextBox (could a lot or a litte, its search results) and would like to apply some custom color coding. Decided to do it with Regex and while it works, it seems to be ...
0
votes
5answers
53 views

how to extract a whole sentence by a single word match in a string?

So I have got a whole string (about 10k chars) and then searching for a word(or many words) in that string. With regex(word).Matches(scrappedstring). But how to do so to extract the whole sentence, ...
-4
votes
2answers
69 views

What will be the regular expression for pattern like 4,1,66,11,2,77,25,2,99,4,5?

What will be the regular expression for pattern like 4,1,66,11,2,77,25,2,99,4,5 I am using .NET validation controls.
1
vote
3answers
51 views

Regex expression only catching last few values

I have a large document with <title>words words </title> as descriptors I am trying to find a regex expression to give me the data between those tags I have found this ...
1
vote
2answers
41 views

How can you match all but the last word of a line?

I want to get two strings. The last word on the line (which works below) and then everything BUT the last word, and I want to do this with regex. Someone suggested I use ^(.*?)\b\w+$ as pattern and ...
0
votes
1answer
23 views

How to build a regular expression for nested search conditions [closed]

I need to build a regular expression for matching something like this: "PQR AND XYZ OR(ABC OR LMN)" please help me to achieve this!
1
vote
2answers
62 views

replace texts between specified tag in given string

what is the best way to replace text between tag [[ text ]] with for example "X" using regex | for example: this [[is]] my text [[new text]] and as a result I would like to have: this X my text X ...
0
votes
0answers
54 views

Regex to parse a string and match a URL or folder path

I'm trying to change a regex that will match a url like http://www.google.com, and also allow it to match a folder name such as j:\Folder\Name\Here I'm parsing the text of a message for any links ...
0
votes
1answer
21 views

how to create regex to fetch the particular(bug.updateBug) string from the log file

how to create regex to fetch the particular(bug.updateBug) string from the following line available in the log file as follows: WX Edit Bug: 3550704 Server: servername User:github appGUID: ...
2
votes
5answers
36 views

Extract group of number from text

Having such a text Above includes - Add/Remove Member To/From Nested Group - 1.24.12 / 1.24.13 how do I create a regular expression that would return the 2 groups of 3 numbers I have. Expected ...
1
vote
1answer
43 views

Prepend a URL segment to a relative / relative to server URL

I have a requirement to prepend a URL segment to all relative, or relative-to-server URLs within an HTML document (eg href or src attributes) on a server-side application I'm working in a .NET ...
1
vote
0answers
54 views

Correcting regex patterns across languages

I found this regex pattern at http://gskinner.com/RegExr/ ,(?=(?:[^"]*"[^"]*")*(?![^"]*")) Which is for pattern matching CSV delimited values (more specifically, the separating commas, which can be ...
0
votes
1answer
38 views

.NET verify format string for a dynamic type

I would appreciate some aid in getting the last piece solved please. What I want is to read from configuration the TYPE, VALUE and FORMATSTRING to be applied on the VALUE. In Code, what I am trying ...
1
vote
2answers
46 views

Detecting CJK characters in a string (C#)

I am using iTextSharp to generate a series of PDFs, using Open Sans as the default font. On occasion, names are inserted into the content of the PDFs. However my issue is that some of the names I need ...
1
vote
1answer
50 views

Select xml element by class name with a regex

I want to extract an svg element by his class name with a C# regex. For example I have this: <path fill="none" ... class="highcharts-tracker highcharts-tracker" ... stroke-width="22" zIndex="2" ...
0
votes
2answers
55 views

Regex for line block starting with specific character?

Question: Given the following text file: blablabla # Block 1 # Some text ## Some more text ### Even more text ### Hello # Some text ### Again Text # Blank lines or lines not starting with # ...
0
votes
1answer
68 views

Powershell Regex not triggering

I'm having a problem getting a Regex to extract a portion of a string and I can't see what I have done wrong. The string: Backup job DailyBackupToNAS completed successfully. Destination: Network ...
-1
votes
2answers
56 views

Regular Expression with .net [closed]

I encounter something in regular expression with validation numbers, asp.net. I want to limit mamimum total digit counts are 5. And decimal numbers are 2 positions for maximum, cannot exceed 2 digits, ...
0
votes
3answers
78 views

I would like to make a pattern using regex

I would like to make a regex pattern ,I would like to make a pattern that get the value which is inside the brackets ,I tried this one but its not working. String input = "(3+4)+5*4"; Match m = ...
2
votes
2answers
40 views

RichTextbox - line length selection issue

I'm coding a little app where I can load a textfile to match regex: I change the forecolor text based in the length of the matched line, The problem is if a line is a multiline then it don't work ...
0
votes
2answers
41 views

how to make a regular expression in a string after a certain line

Hi coder I am new in regular expression so I don't know much about I will show you what I have and what I did. String on which I have to put regular expression I have two search ticket number in it ...
-2
votes
3answers
98 views

Regex for validating a string that contains combination of alphabets and numbers [closed]

I need a regular expression to check that a string contains combination of alphabets and numbers.Special characters and space is not allowed.my string should contain atleast one character and one ...
1
vote
4answers
90 views

Why doesn't this regular expression using word separator (\b) match the example in .Net?

Should be simple enough, but this thing not working is baffling me, any insight into why is greatly appreciated. I'm trying to match any instances of an abbreviated word with any number of trailing ...
0
votes
2answers
38 views

Cant create regular expression

i need regular expression (Regex.Match) for any combination of following symbols a-z A-Z 0-9 ()[]_-. Length is from 2 to 16 symbols. Examples: asdqwe23)) asd[-_]QWE 0(.)qwe[zz_-]. Ive tried ...
-3
votes
0answers
39 views

How to use regex to reject metacharacters for all form fields [closed]

How would you use regex to reject the following metacharacters for all form fields: ^ $ \ / ( ) | ? + * [ ] { } ><
0
votes
2answers
51 views

Extract all values between double quotes from a webpage’s source code

I have saved the source code of a webpage (the option in every browser); now I want to catch everything between quotes that starts with http://. How can I do that?
0
votes
1answer
29 views

Backreference Constructs in Regular Expressions .NET

I have date in format: 26-4-03 or 26/04/03 or 26.4.3 It's working variant with Backreference Constructs: \b\d{1,2}(\/|\.|\-)\d{1,2}\1(\d{1,2))\b But can I write someway like this? ...
1
vote
4answers
75 views

Regular expressions

I need to extract numbers separated by commas from strings like this (with an arbitrary count of numbers and spaces): Expression type: Answer: (1, 2,3) 1,2,3 ...
3
votes
1answer
73 views

Scrape all html between tags

Can't seem to get this after hours of searching and trial and error. I'm trying to return the text between two html tags. The problem is that the text spans multiple lines. Here's an example. If ...
-2
votes
0answers
48 views

Generating String by applying Provided pattern and initial Value

I have a requirement to, given a Pattern and a string e.g the name of a file, to generate a new string by concatenating, and or inserting, the necessary characters to get the given string to be a ...
0
votes
1answer
56 views

C# Regex : let's parse Objective-C

I'm trying to parse an x-code project to translate it. I've got 3 or 4 big applications to translate so i start a C# project to do this. I'm having big troubles with Regex. Does anyone know how to ...
0
votes
1answer
39 views

DevExpress TextEdit - Mask for Negative Values

Actually, I have a Devexpress TextEdit and I am displaying amount in that TextEdit. I have set the Mask Properties of TextEdit like : - MaskType -> Numeric - EditMask -> n2 - ...
0
votes
1answer
55 views

Escaping hash and quote to regular expression

I am trying to define a regular to use with a regular expression validator that limits the content of a textbox to only alphanumeric characters, slash (/), hash (#), left and right parentheses (()), ...

1 2 3 4 5 41