Follow on to previous post ...
Looks like this forum mangles XML encodings even though I placed them within code blocks. Use "& # 6 0 ; ! - - ", without the spaces, for start of comment and " - - & # 6 2 ;", without the spaces, for end of comment.
This is what I use
<xsl:text disable-output-escaping="yes">
<!--
</xsl:text>
<xsl:copy-of select="descendant::node()[position()>2]"/>
<xsl:text disable-output-escaping="yes">
-->
</xsl:text>
Are you using a wireless connection? If so, go into netsh wlan and remove all profiles. I find I sometimes have to do this if I am roaming a lot.
Also do "arp -d *" from an elevated command prompt to clean out the arp cache.
Here is another way - using ksh93 regular expressions
if [[ $1 =~ ^(report|run)$ && $2 > 0 ]]
then
echo "This is correct: $0 $1 $2"
else
echo "USAGE:$0 <report|run> <number> "
fi
Oops, I forgot to add back in the test for negatives in my previous post. Sorry
Here is what I really meant to propose
if ( Currency !~ /^(-?[1-9][0-9]*\.[0-9][0-9])$|^(-?0\.[0-9][0-9])$/ && Currency !~ "^[ \t]*$" )
Sure XSL can handle diacritics. Just do a web search for "XSL unicode diacritics" and you will find lots of information.
The XML recommendations explicitly says XML supports Unicode/ISO 10646. All XML processors must accept the UTF-8 and UTF-16 encodings of ISO 10646.
ISO 10646 is an...
If you are using ksh93 you can also use printf "%(%s)T" to return the number of seconds since the Epoch. This avoids a call to an external utility such as date.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.