473,379 Members | 1,260 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,379 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 1604

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
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...
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: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

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.