473,508 Members | 4,779 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Regex

Hi,

I have the following:

Dim mystring As String = "1.2 3 456 7........." That is 14818 long
Dim theReg As New Regex("( \d|-|\.|\s\d|\s-)+")
Dim theMatch As Match = theReg.Match(mystring)
If theMatch.Length = mystring.Length Then ...........

The problem is that theMatch.Length = 14766 and my string is 14818
Why is that? Is there any limitation on the Length of the Match?

Thanks in advance,
Emilia.
Jul 21 '05 #1
4 1715

Don't think so.

The error got to be in the way the regular expression is formed
or that the data isn't exactly what you think it is. I'd start halfving
the string to nail down in what area of the string the matching doesn't
give the expected result.

I'd assume that a

Dim theReg As New Regex(".*")

would return a length of 14818.


"Emilia" wrote:
Hi,

I have the following:

Dim mystring As String = "1.2 3 456 7........." That is 14818 long
Dim theReg As New Regex("( \d|-|\.|\s\d|\s-)+")
Dim theMatch As Match = theReg.Match(mystring)
If theMatch.Length = mystring.Length Then ...........

The problem is that theMatch.Length = 14766 and my string is 14818
Why is that? Is there any limitation on the Length of the Match?

Thanks in advance,
Emilia.

Jul 21 '05 #2
Hi,

I have tried what you said, but the length of the match is 14766 instead of
14818.

Any other idea?
Thanks,
Emilia.

"Ben Solomon" wrote:

Don't think so.

The error got to be in the way the regular expression is formed
or that the data isn't exactly what you think it is. I'd start halfving
the string to nail down in what area of the string the matching doesn't
give the expected result.

I'd assume that a

Dim theReg As New Regex(".*")

would return a length of 14818.


"Emilia" wrote:
Hi,

I have the following:

Dim mystring As String = "1.2 3 456 7........." That is 14818 long
Dim theReg As New Regex("( \d|-|\.|\s\d|\s-)+")
Dim theMatch As Match = theReg.Match(mystring)
If theMatch.Length = mystring.Length Then ...........

The problem is that theMatch.Length = 14766 and my string is 14818
Why is that? Is there any limitation on the Length of the Match?

Thanks in advance,
Emilia.

Jul 21 '05 #3
I duplicated your string in to a string with the length of 25600
and I got a match length back of 25600 using the matching anything regular
expression so there's obviously no built-in limitation there (at least with
reasonably long strings).

Used:
Dim theReg As New Regex(".*")
Got: theMatch.Length = 25600

This points at something not right with your data. Maybe you're
reading it in from a database or what not...

I'd verify the length again using just the String class' Length property
or some other independent means to verify actual length.
I'm not sure your reg exp. takes in to account any whitespace character
that might be in the data...
"Emilia" wrote:
Hi,

I have tried what you said, but the length of the match is 14766 instead of
14818.

Any other idea?
Thanks,
Emilia.

"Ben Solomon" wrote:

Don't think so.

The error got to be in the way the regular expression is formed
or that the data isn't exactly what you think it is. I'd start halfving
the string to nail down in what area of the string the matching doesn't
give the expected result.

I'd assume that a

Dim theReg As New Regex(".*")

would return a length of 14818.


"Emilia" wrote:
Hi,

I have the following:

Dim mystring As String = "1.2 3 456 7........." That is 14818 long
Dim theReg As New Regex("( \d|-|\.|\s\d|\s-)+")
Dim theMatch As Match = theReg.Match(mystring)
If theMatch.Length = mystring.Length Then ...........

The problem is that theMatch.Length = 14766 and my string is 14818
Why is that? Is there any limitation on the Length of the Match?

Thanks in advance,
Emilia.

Jul 21 '05 #4
Thanks a lot for your help!
Yes, you were right. The problem was with the string. Now it is working!!!

"Ben Solomon" wrote:
I duplicated your string in to a string with the length of 25600
and I got a match length back of 25600 using the matching anything regular
expression so there's obviously no built-in limitation there (at least with
reasonably long strings).

Used:
Dim theReg As New Regex(".*")
Got: theMatch.Length = 25600

This points at something not right with your data. Maybe you're
reading it in from a database or what not...

I'd verify the length again using just the String class' Length property
or some other independent means to verify actual length.
I'm not sure your reg exp. takes in to account any whitespace character
that might be in the data...
"Emilia" wrote:
Hi,

I have tried what you said, but the length of the match is 14766 instead of
14818.

Any other idea?
Thanks,
Emilia.

"Ben Solomon" wrote:

Don't think so.

The error got to be in the way the regular expression is formed
or that the data isn't exactly what you think it is. I'd start halfving
the string to nail down in what area of the string the matching doesn't
give the expected result.

I'd assume that a

Dim theReg As New Regex(".*")

would return a length of 14818.


"Emilia" wrote:

> Hi,
>
> I have the following:
>
> Dim mystring As String = "1.2 3 456 7........." That is 14818 long
> Dim theReg As New Regex("( \d|-|\.|\s\d|\s-)+")
> Dim theMatch As Match = theReg.Match(mystring)
> If theMatch.Length = mystring.Length Then ...........
>
> The problem is that theMatch.Length = 14766 and my string is 14818
> Why is that? Is there any limitation on the Length of the Match?
>
> Thanks in advance,
> Emilia.

Jul 21 '05 #5

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

Similar topics

3
2060
by: Jon Maz | last post by:
Hi All, Am getting frustrated trying to port the following (pretty simple) function to CSharp. The problem is that I'm lousy at Regular Expressions.... //from...
9
4564
by: Tim Conner | last post by:
Is there a way to write a faster function ? public static bool IsNumber( char Value ) { if (Regex.IsMatch( Value.ToString(), @"^+$" )) { return true; } else return false; }
20
8025
by: jeevankodali | last post by:
Hi I have an .Net application which processes thousands of Xml nodes each day and for each node I am using around 30-40 Regex matches to see if they satisfy some conditions are not. These Regex...
17
3941
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 ...
6
2486
by: Extremest | last post by:
I have a huge regex setup going on. If I don't do each one by itself instead of all in one it won't work for. Also would like to know if there is a faster way tried to use string.replace with all...
7
2565
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...
3
2691
by: aspineux | last post by:
My goal is to write a parser for these imaginary string from the SMTP protocol, regarding RFC 821 and 1869. I'm a little flexible with the BNF from these RFC :-) Any comment ? tests= def...
15
50138
by: morleyc | last post by:
Hi, i would like to remove a number of characters from my string (\t \r \n which are throughout the string), i know regex can do this but i have no idea how. Any pointers much appreciated. Chris
4
2663
by: CJ | last post by:
Is this the format to parse a string and return the value between the item? Regex pRE = new Regex("<File_Name>.*>(?<insideText>.*)</File_Name>"); I am trying to parse this string. ...
0
1724
by: Karch | last post by:
I have these two methods that are chewing up a ton of CPU time in my application. Does anyone have any suggestions on how to optimize them or rewrite them without Regex? The most time-consuming...
0
7228
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
7332
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
7393
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...
0
7502
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5635
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,...
1
5057
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...
0
3206
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
1565
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
426
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.