473,788 Members | 2,882 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

regex question

Hi,

could someone help me putting together a regex expression for my problem?

I need my search filter to treat spaces and commas in the query the same
way no matter how many there are...

Something like this:
If a user enter "song, song" the filter has to find:
song song
song song
song,song
as well as
blasong, songbla

any tips?

thanks,
sačo
Jul 26 '06 #1
6 3962
You would have to explain the business rules of your "search filter."

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Chicken Salad Alchemist

Sequence, Selection, Iteration.
"Sačo Zagoranski" <sa**@skz.siwro te in message
news:Z7******** ************@ne ws.siol.net...
Hi,

could someone help me putting together a regex expression for my problem?

I need my search filter to treat spaces and commas in the query the same
way no matter how many there are...

Something like this:
If a user enter "song, song" the filter has to find:
song song
song song
song,song
as well as
blasong, songbla

any tips?

thanks,
sačo

Jul 26 '06 #2
You would have to explain the business rules of your "search filter."
As I wrote:

Something like this:
If a user enter "song, song" the filter has to find:
song song
song song
song,song
as well as:
blasong, songbla
blasong, songbla
but not this:
song sometext song

The filter has to ignore spaces and commas between the words entered.


Jul 26 '06 #3
If the search text is being entered in a Textbox or any other visual
component then one Solution could be to capture the Keypress event and then
ignore the space and comma and just store the actual text in a variable but
display everything.
I am new to the .net but there should a method to find a particular
character in a string and retrieve the rest of the string.
"Sačo Zagoranski" <sa**@skz.siwro te in message
news:HW******** ************@ne ws.siol.net...
>
You would have to explain the business rules of your "search filter."

As I wrote:

Something like this:
If a user enter "song, song" the filter has to find:
song song
song song
song,song

as well as:
blasong, songbla
blasong, songbla

but not this:
song sometext song

The filter has to ignore spaces and commas between the words entered.


Jul 26 '06 #4
* Anoop wrote, On 27-7-2006 0:09:
If the search text is being entered in a Textbox or any other visual
component then one Solution could be to capture the Keypress event and then
ignore the space and comma and just store the actual text in a variable but
display everything.
I am new to the .net but there should a method to find a particular
character in a string and retrieve the rest of the string.
"Sačo Zagoranski" <sa**@skz.siwro te in message
news:HW******** ************@ne ws.siol.net...
>>You would have to explain the business rules of your "search filter."
As I wrote:

Something like this:
> If a user enter "song, song" the filter has to find:
song song
song song
song,song

as well as:
> blasong, songbla
blasong, songbla

but not this:
song sometext song

The filter has to ignore spaces and commas between the words entered.
You'll have to generate a regex on the fly to handle this:

string input = "bla bla song song...... bla bla";
// read the input from the user
string inputRegex = "song, song";
// replace space with comma, because Regex.Escape will escape whitespace
inputRegex = inputRegex.Repl ace(' ', ',');
// Escape the string to prevent regex injection
inputRegex = Regex.Escape(in putRegex);
// build the actual search expression
string searchExpressio n = Regex.Replace(i nputRegex, "[, ]+", "[, ]+",
RegexOptions.No ne);
// find all matches in the string
MatchCollection ms = Regex.Matches(i nputRegex, searchExpressio n);

This will do exactly what you need.

Jesse
Jul 26 '06 #5
Thanks for your reply Jesse...

You probably meant:
MatchCollection ms = Regex.Matches(i nput, searchExpressio n);
correct? Otherwise the "input" isn't used anywhere...

In any case this doesn't return any matches...
>
You'll have to generate a regex on the fly to handle this:

string input = "bla bla song song...... bla bla";
// read the input from the user
string inputRegex = "song, song";
// replace space with comma, because Regex.Escape will escape whitespace
inputRegex = inputRegex.Repl ace(' ', ',');
// Escape the string to prevent regex injection
inputRegex = Regex.Escape(in putRegex);
// build the actual search expression
string searchExpressio n = Regex.Replace(i nputRegex, "[, ]+", "[, ]+",
RegexOptions.No ne);
// find all matches in the string
MatchCollection ms = Regex.Matches(i nputRegex, searchExpressio n);

This will do exactly what you need.

Jesse
Jul 27 '06 #6
Sačo Zagoranski wrote:
>
>You would have to explain the business rules of your "search filter."

As I wrote:

Something like this:
If a user enter "song, song" the filter has to find:
song song
song song
song,song

as well as:
blasong, songbla
blasong, songbla

but not this:
song sometext song

The filter has to ignore spaces and commas between the words entered.
..*song(?:\ *,*\ *)song.*

Explanation from The Regulator (thanks to Roy O)

.. (any character)
* (zero or more times)
song
Non-capturing Group
' ' (space)
* (zero or more times)
,
* (zero or more times)
' ' (space)
* (zero or more times)
End Capture
song
.. (any character)
* (zero or more times)

However that will also match songsong.
Dont know if you want that or not, if not then you would have to do it
with an or so it matches one or more spaces or one or more commas (dont
know if you want song,,song to match either).

You get the idea.

JB
>

Sep 19 '06 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
4380
by: engwar1 | last post by:
Not sure where to ask this. Please suggest another newsgroup if this isn't the best place for this question. I'm new to both vb.net and regex. I need a regular expression that will validate what people are entering as their new password. Must be between 6 and 10 characters Must be alphanumeric only Can not be the word "password" in any case ie "pAsSworD" should also be denied.
4
9771
by: aevans1108 | last post by:
expanding this message to microsoft.public.dotnet.xml Greetings Please direct me to the right group if this is an inappropriate place to post this question. Thanks. I want to format a numeric value according to an arbitrary regular expression.
2
3427
by: Tim Conner | last post by:
Hi, Thanks to Peter, Chris and Steven who answered my previous answer about regex to split a string. Actually, it was as easy as create a regex with the pattern "/*-+()," and most of my string was splitted. I am fascinated to the powerfull use of this RegEx class, so I wonder if it could go a step further. As a question, can regex be used to valid a set of different functions ? Example : Suppose I have to verify the correctness of an...
6
396
by: Du Dang | last post by:
Text: ===================== <script1> ***stuff A </script1> ***more stuff <script2> ***stuff B
17
3980
by: clintonG | last post by:
I'm using an .aspx tool I found at but as nice as the interface is I think I need to consider using others. Some can generate C# I understand. Your preferences please... <%= Clinton Gallagher http://forta.com/books/0672325667/
5
5105
by: Chris | last post by:
How Do I use the following auto-generated code from The Regulator? '------------------------------------------------------------------------------ ' <autogenerated> ' This code was generated by a tool. ' Runtime Version: 1.1.4322.2032 ' ' Changes to this file may cause incorrect behavior and will be lost if ' the code is regenerated. ' </autogenerated>
6
5899
by: Martin Evans | last post by:
Sorry, yet another REGEX question. I've been struggling with trying to get a regular expression to do the following example in Python: Search and replace all instances of "sleeping" with "dead". This parrot is sleeping. Really, it is sleeping. to This parrot is dead. Really, it is dead.
7
2589
by: Extremest | last post by:
I am using this regex. static Regex paranthesis = new Regex("(\\d*/\\d*)", RegexOptions.IgnoreCase); it should find everything between parenthesis that have some numbers onyl then a forward slash then some numbers. For some reason I am not getting that. It won't work at all in 2.0
6
4211
by: Phil Barber | last post by:
I am using Regex to validate a file name. I have everything I need except I would like the dot(.) in the filename only to appear once. My question is it possible to allow one instance of character but not two or more? example myfile.doc = good My.file.doc = not good if you could give an example of the expression pattern that would most helpful. thanks phil
6
2074
by: | last post by:
Hi all, Sorry for the lengthy post but as I learned I should post concise-and-complete code. So the code belows shows that the execution of ValidateAddress consumes a lot of time. In the test it is called a 100 times but in my real app it could be called 50000 or more times. So my question is if it is somehow possible to speed this up and if so how
0
9498
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10366
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10175
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10112
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8993
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7518
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6750
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5536
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3675
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.