[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework

Adding a complex string to config file

Ashutosh

9/30/2008 11:42:00 AM

Hi,
I need to add this string as an appsetting in the config file

^<(?<alarmNumber>\d{3})=(?<alarmStatus>[01])>$

This string has some characters that conflicts with the XML/config file
format....I don't remember the XML rules....

Any suggestion ?


Thanks & Regards,
Ashutosh
5 Answers

Alex Meleta

9/30/2008 1:33:00 PM

0

Hi Ashutosh,

^&lt;(?&lt;alarmNumber&gt;\d{3})=(?&lt;alarmStatus&gt;[01])&gt;$

> ^<(?<alarmNumber>\d{3})=(?<alarmStatus>[01])>$

Use the Settings of project's properties to generate this stuff.

Regards,
Alex Meleta
[TechBlog] http://devkids.bl...


hongyes

10/1/2008 3:45:00 AM

0

Thanks for Alex's accurate answer to your question.

In the meanwhile, I would provide some additional information for you to
learn how to escape string embedded in xml file.
1. Using escaped characters.
The following table shows the invalid XML characters and their escaped
equivalents.
invalid XML Character : Replaced With
"<" : "&lt;"
">" : "&gt;"
"\"" : "&quot;"
"\'" : "&apos;"
"&" : "&amp;"
In .NET Framework, we use " SecurityElement.Escape" method to do this job.
It is documented at
http://msdn.microsoft.com/en-us/library/system.security.securityel...
pe.aspx.

2. The other way is using CDATA Sections.
As documented as CDATA Sections [XML Standards]
(http://msdn.microsoft.com/en-us/library/ms2...)
"CDATA sections provide a way to tell the parser that there is no markup in
the characters contained by the CDATA section."
However, it has some restrictions for CDATA.
a. The sequence ]]> cannot appear within a CDATA section because this
sequence signals the end of the section.
b. CDATA can only be interpreted as element or entity markup, but not
attribute.

Please feel free to let me know if you have any question. It's our pleasure
to be assistance.

Regards,
Hongye Sun (hongyes@online.microsoft.com, remove 'online.')
Microsoft Online Community Support

Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
msdnmg@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/en-us/subscriptions/aa948868.aspx#not....

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://support.microsoft.com/select/default.aspx?target=assistance&am....
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.

Ashutosh

10/1/2008 5:52:00 AM

0

Thanks!

Alex Meleta wrote:
> Hi Ashutosh,
>
> ^&lt;(?&lt;alarmNumber&gt;\d{3})=(?&lt;alarmStatus&gt;[01])&gt;$
>
>> ^<(?<alarmNumber>\d{3})=(?<alarmStatus>[01])>$
>
> Use the Settings of project's properties to generate this stuff.
>
> Regards,
> Alex Meleta
> [TechBlog] http://devkids.bl...
>
>

Ashutosh

10/1/2008 5:53:00 AM

0

Hi Hongye,
Thanks for the update...

I have read a lot about XML but it was around 1.5 years back so don't
remember anything....:)

Thanks again.

Ashutosh

Hongye Sun [MSFT] wrote:
> Thanks for Alex's accurate answer to your question.
>
> In the meanwhile, I would provide some additional information for you to
> learn how to escape string embedded in xml file.
> 1. Using escaped characters.
> The following table shows the invalid XML characters and their escaped
> equivalents.
> invalid XML Character : Replaced With
> "<" : "&lt;"
> ">" : "&gt;"
> "\"" : "&quot;"
> "\'" : "&apos;"
> "&" : "&amp;"
> In .NET Framework, we use " SecurityElement.Escape" method to do this job.
> It is documented at
> http://msdn.microsoft.com/en-us/library/system.security.securityel...
> pe.aspx.
>
> 2. The other way is using CDATA Sections.
> As documented as CDATA Sections [XML Standards]
> (http://msdn.microsoft.com/en-us/library/ms2...)
> "CDATA sections provide a way to tell the parser that there is no markup in
> the characters contained by the CDATA section."
> However, it has some restrictions for CDATA.
> a. The sequence ]]> cannot appear within a CDATA section because this
> sequence signals the end of the section.
> b. CDATA can only be interpreted as element or entity markup, but not
> attribute.
>
> Please feel free to let me know if you have any question. It's our pleasure
> to be assistance.
>
> Regards,
> Hongye Sun (hongyes@online.microsoft.com, remove 'online.')
> Microsoft Online Community Support
>
> Delighting our customers is our #1 priority. We welcome your comments and
> suggestions about how we can improve the support we provide to you. Please
> feel free to let my manager know what you think of the level of service
> provided. You can send feedback directly to my manager at:
> msdnmg@microsoft.com.
>
> ==================================================
> Get notification to my posts through email? Please refer to
> http://msdn.microsoft.com/en-us/subscriptions/aa948868.aspx#not....
>
> Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
> where an initial response from the community or a Microsoft Support
> Engineer within 1 business day is acceptable. Please note that each follow
> up response may take approximately 2 business days as the support
> professional working with you may need further investigation to reach the
> most efficient resolution. The offering is not appropriate for situations
> that require urgent, real-time or phone-based interactions or complex
> project analysis and dump analysis issues. Issues of this nature are best
> handled working with a dedicated Microsoft Support Engineer by contacting
> Microsoft Customer Support Services (CSS) at
> http://support.microsoft.com/select/default.aspx?target=assistance&am....
> ==================================================
> This posting is provided "AS IS" with no warranties, and confers no rights.
>
>

hongyes

10/1/2008 9:50:00 AM

0

You are welcome, Ashutosh. I am looking forward to work with you in future.
:)

Have a nice day!

Regards,
Hongye Sun (hongyes@online.microsoft.com, remove 'online.')
Microsoft Online Community Support

Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
msdnmg@microsoft.com.

This posting is provided "AS IS" with no warranties, and confers no rights.