An ampersand (or epershand; "&") is a logogram representing the conjunction word "and". This symbol is a ligature of the letters in et, Latin for "and".

learn more… | top users | synonyms

1
vote
2answers
46 views

Difference between && and -a in BASH

From what I know, && and -a both provide the conditional AND function in an expression for a BASH shell. Is there any difference between the 2 of them?
0
votes
0answers
97 views

Import invalid XML file (1.5G) into MySQL with unescaped ampersand

I can't import my big xml file (1,5g) into database. Then I use XMLReader->read() i have error where element have a ampersand. maybe you can help me where I convert invalid XML file to valid? I ...
1
vote
0answers
27 views

Ampersand in cd label [closed]

How can i use ampersand (&) in cd label correctly? I have line in my autorun.inf: [autorun] label="Something & something" In windows explorer cd label is correct, but in "Autoplay ...
0
votes
2answers
35 views

string.replace for Titanium webview

I have tried the following to no avail var clean = link.replace(/\&nbsp\; /gi,' '); I have also tried without escaping both the & and ; and escaping only one but it doesn't work. I can ...
0
votes
0answers
25 views

libxml ampersand

I am using libXML for parsing XML and I have string "AAA BBB CCCC &" which will be encode in xml as "AAA BBB CCCC &". When charactersFoundSAX method is called, it gives me "AAA BBB CCCC " as a ...
1
vote
1answer
27 views

Ampersand in String causing incorrect length/comparison

I have two strings (which are supposed to be the same). One is pulled from an API result and one is entered by the user. I'm trying to compare them and failing. When I var_dump, I get the following: ...
0
votes
0answers
32 views

400 Error when CDATA includes Ampersand via Microsoft.XMLHTTP

We are experiencing a strange error which no one can really put their finger on. We have some javascript which uses Microsoft.XMLHTTP to POST an xml document to the server. The xml is cobbled ...
0
votes
2answers
77 views

What does the '&&' expression mean in this snippet of JavaScript? [closed]

Hi, I recently got a piece of JavaScript code snippet from here but I don't know what the two ampersands do. (function hidenext(jq){ jq.eq(0).fadeOut("fast", function(){ ...
0
votes
2answers
189 views

How to handle ampersands in URL parameters?

I am having the following issue: I am using an application that allows users to concatenate text to build a URL that passes parameters to an ASP page via GET method, i.e. something like: ...
0
votes
2answers
52 views

XSLT crashes when encountering Ampersand sign

I am currently running in some trouble when trying to output a certain XML tag containing the Ampersand sign (&). So more concrete, when I try to output the following tag. I get an error ...
1
vote
1answer
56 views

Proper ampersand handling in e-mail activation link

In e-mail activation links I return <a href="http://www.foo.com/register.php?action=activation&key=123">Activation</a> In some clients (e.g. SquirrelMail) & is changed to ...
1
vote
3answers
53 views

Unencoded Ampersands and Capitalize

Gretings all, I'm wondering if anyone has noticed this inconsistency and has any idea how to fix it. Example: http://jsfiddle.net/p5G2N/ Premise: Severals words are joined by an unencoded ...
0
votes
2answers
92 views

use of ampersand

I am trying to understand this bit of code, the method addBittoTree needs a boolean to be passed through. I am not quite sure as to what it is checking. I do not understand why there is an ampersand ...
0
votes
1answer
55 views

Browser not converting &amp; (&) when passed through URI

I have an RSS 2.0 Item element which requires a link for the RSS to validate. I want to insert a URI within the link element to link to a page on my website. Within this URI I used &amp; instead ...
0
votes
1answer
69 views

sql update statement including & and line break

I'm using this update statement $sql = "update questions set response = ?, `check` = ? where questionID = ? && starID = ?"; $qc = $pdo_conn->prepare($sql); ...
0
votes
3answers
122 views

Using ampersand in pretty URL breaks URL

I have seen plenty of people having this problem and it seems the only way to stop apache treating the encoded ampersand and a URL ampersand is it use the mod rewrite B flag, RewriteRule ^(.*)$ ...
0
votes
0answers
40 views

It is not possible to use ampersand in keyword for Facebook Search API

I am trying to search Facebook Public Posts for J&T in help with Graph API: ...
1
vote
1answer
69 views

highcharts ampersand

How can I make the ampersand display properly under the first set of bars/columns in this chart: http://jsfiddle.net/VxbrK/2/ It should be 'Apples & Oranges' not 'Apples &amp; Oranges'.
5
votes
1answer
75 views

python 'and' behavior with sets

I know that if I want to get the intersection of two sets (or forzensets) I should use the ampersand &. Out of curiosity I tried to use the word 'and' a = set([1,2,3]) b = set([3,4,5]) print(a ...
0
votes
1answer
112 views

Ampersand causing returned text to be cut off

I have inherited several php scripts from the person who maintaned the code before. He had no programming experience and mostly threw things together the best he could. today I had to rewrite a ...
0
votes
0answers
71 views

PHP using ampersand in combination with a _GET variable from a database

I am trying to use a combination of $_GET and .htaccess to create SEO friendly URL's. We have a database where we are currently using: url.com/article.php?id=1039 (1039 being the unique ID) and are ...
0
votes
0answers
233 views

solr.WordDelimiterFilterFactory removes & at index time but not at query time

I am new to Solr and I have a case where at index time, a value (text field) is analyzed by the solr.WordDelimiterFilterFactory like so: <filter class="solr.WordDelimiterFilterFactory" ...
1
vote
2answers
65 views

php error loading an rss feed with “&” in the data

My task is loading an xml rss feed with php. I solved it smoothly so far, but I randomly encountered a problem the other day: If the news contains the ampersand character (&) in the .xml file, I ...
0
votes
1answer
91 views

the encoded ampersand in the url some works other doesn't

hello all: I am testing to use data scrape scripts to grab page from best buy's page and I generated a link like this: ...
0
votes
0answers
113 views

Ampersand (&) In The Redirect URL on the SoundCloud API?

Is it possible to use an ampersand in the redirect URL of the soundcloud API when authenticating a user? I need the user to be returned to a page with parameters after they've "allowed" my app, but ...
1
vote
2answers
162 views

ColdFusion: rereplace xml formatted html-tags regex

I've found a working solution to remove all html-tags as follow: <cfset test = rereplace(blah, "<h2[^>]*>", "", "ALL") /> I need to generate a xml file and rename some tags after ...
0
votes
0answers
136 views

MVC encodes ampersands

I have { meta name="description" content="@Model.Description" }. The @Model.Description is a string that has words and an '&' character in it. For example: "This is my meta description & ...
0
votes
0answers
110 views

Launching browser in C#: ampersand “&” becomes “%26”

I am using Process.Start to launch a browser to display my html file (with query): Process.Start("iexplorer", "file:\\\\C:\\temp\\index.html?x=1&y=2") However in the opened browser address bar ...
3
votes
1answer
85 views

Meaning of such function definition in wordpress “function &get_post”

I am working on wordpress research recently and trying to dig how the query mechanism is handled.I came across a function definition like this function &get_post(&$post, $output = OBJECT, ...
0
votes
1answer
155 views

SQL Server : select from a table containing &

I'm unable to select from a table that contains & (ampersand). I'm querying the SQL Server database using VB.NET, the exception it throws is incorrect syntax near '&' Here's the code ...
0
votes
4answers
80 views

exporting the &-sign to xml from java [duplicate]

Possible Duplicate: How to disable/avoid Ampersand-Escaping in Java-XML? i need to create something like: &#8743;(in the xml-file) and the problem is, that the java technique i am using ...
1
vote
1answer
320 views

JSON Ampersand Convertion Causes Error

When I try to parse my geocode links I get error because of amp; statement. Before i "json_decode" the string, i have a link named www.something.com/something?bla=bla&sensor=true but when i send ...
2
votes
1answer
195 views

Can I use regexes containing ampersands in HTML5 pattern attributes?

I use the following email validation before submission of a form in an HTML5 webapp: <input id="mail" name="mail" type="email" value="" required placeholder="Email" ...
0
votes
2answers
68 views

The meaning of the ampersand

In this line: var dataString = 'name='+ name + '&email=' + email + '&subject=' + subject + '&msg=' + msg; What does the ampersand(&) mean?
0
votes
4answers
103 views

Ampersands in database

I am trying to write a php function that goes to my database and pulls a list of URLS and arranges them into an xml structure and creates an xml file. Problem is, Some of these urls will contain an ...
0
votes
4answers
365 views

SED : How to replace a character within a matched pattern using ampersand (&)

When we match a pattern using sed, the matched pattern is stored in the "ampersand" (&) variable. IS there a way to replace a character in this matched pattern using the ampersand itself ? For ...
3
votes
2answers
79 views

why doesn't this work: x.map(&:+“A”)

from what I've read, something {|i| i.foo } something(&:foo) are equivalent. So if x = %w(a b c d), why aren't the following equivalent: x.map {|s| s.+ "A"} x.map {&:+ "A"} ? The ...
0
votes
1answer
136 views

error sending an argument with an ampersand character in the value in python?

I'm dealing 2 scripts in python. the first one needs to send a value or an argument to the second script. Now the problem is whenever I send the value to the 2nd script, the 2nd script couldn't get ...
0
votes
0answers
116 views

URL Rewrite IIS double ? and &

I try to get url rewrite work for my domain (IIS server), but all of my trials fails, by now. I want to rewrite http://www.domain.com/index.php?test.php?_escaped_fragment= to ...
1
vote
3answers
2k views

PowerShell Invoke-Expression with Ampersand in the Command String

I am trying to pass a variable with a string that contains an ampersand into invoke-expression and it is telling me I have to put it in quotations and pass it as a string. I've tried multiple ...
1
vote
1answer
137 views

Why doesn't CFXML like &amp;?

Using CFXML, I'm getting this error: An error occured while Parsing an XML document. The entity name must immediately follow the '&' in the entity reference. The dump shows ampersands used ...
1
vote
2answers
347 views

jQuery: Select dropdown by HTML

I've written a jQuery function that allows me to select an option from a dropdown using the option's HTML. $.fn.select = function( option ) { $(selector + ' option').each(function() { if ...
3
votes
1answer
84 views

modrewrite, ampersand in variable

I have a site with venues like AT&T Park. The links for this page should be: /venue.php?venue=at-and-t+park Using htaccess, I've cleaned them up to look like. RewriteRule venue/([^/]+)/{0,1}$ ...
1
vote
2answers
181 views

are characters # or & allowed in xml?

i have values with special chars that encoded to ascii in my xml. for example : <?xml version="1.0" encoding="UTF-8"?> <response> ...
1
vote
5answers
1k views

The best way to store &(Ampersand) in MySQL database

I'm building a category list and I'm unsure how to store the Ampersand symbol in MySQL database. Is there any problem/disadvantage if I use '&'. Are there any differences from using it in a html ...
-1
votes
2answers
442 views

Change to HTML entity with jQuery

I have some URLs being dynamically output onto a div which contain & like this: <div id="box"> <a href="http://domain.com/index.html&location=1">First URL</a> <a ...
0
votes
2answers
89 views

Kernel.lambda() not returning a lambda Proc in Ruby 1.9

I'm writing a simple event bus to use in an application. This part works fine: #!/usr/bin/env ruby module EventBus @callbacks = {} module_function def on event, &callback ...
3
votes
3answers
760 views

Can I use unencoded ampersands (&) in html?

I'm building a website where I have to work with less then perfect masterdata (I guess I'm not the only one :-)) In my case I have to render an xml filte to html (using xsl). Sometimes the ...
0
votes
1answer
142 views

wso2 esb rewriterule replace & with %26 in query

This is actual query: ?param1=xxx&param2=yyy&zzz param2 takes yyy&zzz value Now I need to replace yyy&zzz with yyy%26zzz. But not replace the first ampersand with %26 in the query. ...
0
votes
2answers
397 views

Double encode for JSON

In most of my AJAX functions I have to double encode free text entered by a user, i.e. I have to do encodeURIComponent(encodeURIComponent(myString)). If I do it just once most symbols except double ...

1 2 3 4