473,387 Members | 1,891 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Regular expressions question

Hello:
I want to know if it's possible to obtain the SQL commands stored on a
string using as delimiter a ; character using Regular expressions (i
have tryed it for some time without any result :)),anything like this
(but supporting any combination of SQL commands ;)):

"INSERT INTO TESTTABLE VALUES ( 'This is a semi-colon ;' );" +
"INSERT INTO TESTTABLE VALUES ( 'This is not a semi-colon !' )"

Giving as result:

INSERT INTO TESTTABLE VALUES ( 'This is a semi-colon ;' )
"INSERT INTO TESTTABLE VALUES ( 'This is not a semi-colon !' )

Is this possible using Regular expressions


--
Best regards

Carlos Guzmán Álvarez
Vigo-Spain

Nov 15 '05 #1
1 1606

Instead of using Split, you could use the Regex.Matches method with the
following expression:

[^';]+('[^']*')?[^';]*(?=;)
If you need to use Split, this expression seems to work (although you should
test it thouroughly):

(?n)(?<=(^|;)[^']*('[^']*')?[^']*);

Brian Davis
www.knowdotnet.com
"Carlos Guzmán Álvarez" <ca******@telefonica.net> wrote in message
news:e8**************@TK2MSFTNGP11.phx.gbl...
Hello:
I want to know if it's possible to obtain the SQL commands stored on a
string using as delimiter a ; character using Regular expressions (i
have tryed it for some time without any result :)),anything like this
(but supporting any combination of SQL commands ;)):

"INSERT INTO TESTTABLE VALUES ( 'This is a semi-colon ;' );" +
"INSERT INTO TESTTABLE VALUES ( 'This is not a semi-colon !' )"

Giving as result:

INSERT INTO TESTTABLE VALUES ( 'This is a semi-colon ;' )
"INSERT INTO TESTTABLE VALUES ( 'This is not a semi-colon !' )

Is this possible using Regular expressions


--
Best regards

Carlos Guzmán Álvarez
Vigo-Spain

Nov 15 '05 #2

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

Similar topics

20
by: Toby | last post by:
Could some tell how I could create a search replace Regular Express in .net where is would match MY_STRING_TO_BE_CONVERTED and replace with MyStringToBeConverted
7
by: Patient Guy | last post by:
Coding patterns for regular expressions is completely unintuitive, as far as I can see. I have been trying to write script that produces an array of attribute components within an HTML element. ...
7
by: norton | last post by:
Hello, Does any one know how to extact the following text into 4 different groups(namely Date, Artist, Album and Quality)? - Artist - Album Artist - Album - Artist - Album - Artist -...
4
by: Együd Csaba | last post by:
Hi All, I'd like to "compress" the following two filter expressions into one - assuming that it makes sense regarding query execution performance. .... where (adate LIKE "2004.01.10 __:30" or...
7
by: Billa | last post by:
Hi, I am replaceing a big string using different regular expressions (see some example at the end of the message). The problem is whenever I apply a "replace" it makes a new copy of string and I...
6
by: Ludwig | last post by:
Hi, i'm using the regular expression \b\w to find the beginning of a word, in my C# application. If the word is 'public', for example, it works. However, if the word is '<public', it does not...
25
by: Mike | last post by:
I have a regular expression (^(.+)(?=\s*).*\1 ) that results in matches. I would like to get what the actual regular expression is. In other words, when I apply ^(.+)(?=\s*).*\1 to " HEART...
12
by: =?Utf-8?B?SlA=?= | last post by:
I am a newbie to regular expressions and want to extract a number from the end of a string. The string would have these formats: image/4567 image/45678 image/456789 I would also want to...
12
by: FAQEditor | last post by:
Anybody have any URL's to tutorials and/or references for Regular Expressions? The four I have so far are: http://docs.sun.com/source/816-6408-10/regexp.htm...
9
by: Rene | last post by:
I'm trying to basically remove chunks of html from a page but I must not be doing my regular expression correctly. What i'm trying with no avail. $site = preg_replace("/<!DOCTYPE(.|\s)*<div...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
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,...
0
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...

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.