Tagged Questions

2
votes
2answers
40 views

How to get ASP.NET HyperLink control to encode ampersands in Text attribute?

I use the following control to output a HTML link: <asp:HyperLink ID="hlEditDetails" runat="server" CssClass="arrow-forward" Text="Edit Details &amp; Photo" /> However …
0
votes
3answers
72 views

ampersand not passing through url

On my site www.gibberize.com if you type in the word "and" in the top textarea, the character "&" will appear in the second textarea. The problem is that the "tweet it" link …
0
votes
3answers
49 views

PHP & Conditional

I was searching the net for a random password generator and I come across this code <?php function generatePassword($length=9, $strength=0) { $vowels = 'aeuy'; $conson …
-1
votes
1answer
69 views

Regex to replace ampersands, but not when they’re in a URL

So I have this regex: &(?!#?[xX]?(?:[0-9a-fA-F]+|\w+);) That matches all &'s in a block of text However, if I have this string: & & & & & <a hr …
3
votes
2answers
127 views

What does it mean to start a PHP function with an ampersand?

I'm using the Facebook library with this code in it: class FacebookRestClient { ... public function &users_hasAppPermission($ext_perm, $uid=null) { return $this-&g …
0
votes
4answers
119 views

URL and the ampersand

Using XSLT and XPath 1.0, I have a string I want to escape for use on a URL, for example: <description>one word &amp; another</description> So, the text() of the …
4
votes
6answers
377 views

What is the second meaning of a single ampersand in C#?

I have used the single ampersand (&) in C# to mean "check the second conditional statement even if the first is false". But the following seems to be a different meaning of & …
0
votes
4answers
213 views

How do I make Firefox open a file with an ampersand in the filename?

I've written some Ruby code to inspect ZIP-files as part of an internal company process. The way we usually launch this code is from a web browser. When you click to download the …
0
votes
1answer
309 views

LibXML2 Sax Parsing and ampersand

I've encountered (what I think is) a strange behavior when using the sax parser, and I wanted to know if it's normal. I'm sending this XML through the SAX parser: The "& a …
0
votes
2answers
188 views

mod_rewrite replace all instances of ampersand with %26 for later

Hey there! I want to simply not use ampersand in my URL so I can pass ampersands further down into my system when a file is requested. The problem is Apache deals with it differen …
2
votes
1answer
59 views

sizeWithFont - weird behavior when containing the & character

Whenever an & is present on the text, getting the height seems to be off all the time. Both functions return less than the actual height: CGSize labelSize = [nameLabel.text si …
1
vote
4answers
451 views

Use ampersand in CAST in SQL

The following code snippet on SQL server 2005 fails on the ampersand '&': select cast('<name>Spolsky & Atwood</name>' as xml) Does anyone know a workaround? …
2
votes
6answers
258 views

Why can’t RSS handle the Ampersand?

This is something I've been wondering for a while now. I'll occasionally come across an RSS feed that is broken, and blown to pieces all because line 23 say "Sanford & Sons." T …
3
votes
3answers
332 views

Does this line declare a function? C++

Hi all, I was reading litb's question about SFINAE here and I was wondering exactly what his code is declaring. A simpler (without the templates) example is below: int (&a())[ …