473,668 Members | 2,357 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Different Behavior of Regex in .net 1.1 and 2.0?

As below code, Regex.Replace() can trim the 2nd and 4th line of string
original.
string original = "\n0\t00000\t0\ t0.123456\tEngl ish\tabor"
+

"\n0\t00000\t0\ t0.000000\tEngl ish\tabor" +

"\n0\t00000\t0\ t0.654321\tEngl ish\tabor" +

"\n0\t00000\t0\ t0.000000\tEngl ish\tabor" +"\n";
Console.WriteLi ne(original);
string output = Regex.Replace(o riginal,
"\n.*0\\.000000 .*\n", "\n");
Console.WriteLi ne(output);
This works in .net 2.0 env, but not in 1.1 env. In 1.1, I have to
change it to
string output = Regex.Replace(o riginal, ".*0\\.000000.* \n",
"");
It seems that Regex filter string line by line in 1.1.

Sep 13 '06 #1
0 911

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

Similar topics

1
1504
by: Adam Briska | last post by:
Given the script: -------- use strict; use warnings; my $text = 'blob:blob'; doit($text); doit($text);
2
2912
by: Dave | last post by:
I'm getting different results when I display a value in the Output window as opposed to the Immediate window. Why? Code to recreate problem: 'Purpose: Get different results from Output window than Immediate ' window.
5
1165
by: Jeff Sandler | last post by:
I have a web page. It uses JavaScript to test the user's input before sending it to the server. It frequently tests using isNaN() with some very interesting results. The statements in question test values from text boxes using isNaN() and also checking if they are still the same after parseInt or parseFloat are performed on them. The second test is because isNaN() will return false (is a number) for the string "3a". The curious...
1
1004
by: Relishguy | last post by:
OK, so I am was never so good on NFAs and DFAs, but I am just trying to get one of the Microsoft-supplied RegEx samples to work. It is the last example (describing the Capture class) from this page: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconusingregularexpressionclasses.asp Basically, it returns no Groups as coded. If I change the RegEx to "(abc)+", it works like I would expect (since this says...
9
1709
by: Tamir Khason | last post by:
I have some string in variable str_tmp = "C:\TMP\" I want to display it in textbox (@-quoted), so I'm using tbx.Text = @str_tmp; but for some strange reason this does not work. it processes escape sequence. What is the problem??? -- Tamir Khason Who am I at http://www.khason.biz/
11
2920
by: HopfZ | last post by:
I coudn't understand some behavior of RegExp.test function. Example html code: ---------------- <html><head></head><body><script type="text/javascript"> var r = /^https?:\/\//g; document.write( ); </script></body></html> ---------------------
15
50224
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
9
1513
by: Lie | last post by:
I've noticed some oddly inconsistent behavior with int and float: Python 2.5.1 (r251:54863, Mar 7 2008, 03:39:23) on linux2 -345 works, but Traceback (most recent call last): File "<stdin>", line 1, in <module>
4
1027
by: =?Utf-8?B?RXRoYW4gU3RyYXVzcw==?= | last post by:
Hi, I would like to create a regular expression which matches "Y" or "male". The hard part is that the "Y" must be capital, but the "male" should be case insensitive. I think I have seen a way to have Regex options apply differently throughout the expression, but I can't find it now. Does anyone know if this is possible or how to do it? Thanks! Ethan Ethan Strauss Ph.D.
0
8374
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
8890
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
8791
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
8575
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
8653
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
4202
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 last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4373
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2018
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1783
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 can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.