[dba-VB] VB.Net - XML comments

Eric Barro ebarro at verizon.net
Thu May 10 08:11:52 CDT 2007


 
Did you mean to say "how do I strip the XML tags and end up with just the
content"?

You can use regular expressions to strip off XML or HTML tags. This is the
syntax I use (for VB.NET or C#)...

NewTextValue.Text =
Regex.Replace(OriginalTextValue,@"<(.|\n)*?>",string.Empty); 

-----Original Message-----
From: dba-vb-bounces at databaseadvisors.com
[mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of JWColby
Sent: Thursday, May 10, 2007 5:02 AM
To: 'Access Developers discussion and problem solving';
dba-vb at databaseadvisors.com
Subject: [dba-VB] VB.Net - XML comments

I am using xml comments in place of my regular old comments.  Has anyone
ever found / used something that yanks the comments out to see what they
look like as documentation?  What would I use to do that?
 
John W. Colby
Colby Consulting
www.ColbyConsulting.com
 
_______________________________________________
dba-VB mailing list
dba-VB at databaseadvisors.com
http://databaseadvisors.com/mailman/listinfo/dba-vb
http://www.databaseadvisors.com


 




More information about the dba-VB mailing list