Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
6answers
366 views

Why is this c# snippet legal?

Silly question, but why does the following line compile? int[] i = new int[] {1,}; As you can see, I haven't entered in the second element and left a comma there. Still compiles even though you ...
7
votes
4answers
640 views

History of trailing comma in programming language grammars

Many programming languages allow trailing commas in their grammar following the last item in a list. Supposedly this was done to simplify automatic code generation, which is understandable. As an ...
4
votes
4answers
1k views

Is it always safe to remove a trailing slash from a URL?

I'm storing URLs in a database, and I want to be able to know if two URLs are identical. Generally, a trailing slash at the end doesn't change the response you'd get from a server. (ie. ...
4
votes
3answers
2k views

Unable to make gray eol character by .vimrc

I want to have a gray eol character set by set list listchars=tab:>>,trail:$ where there are no spaces next to the character ":" I get no eol character for the above code if I use no spaces ...
3
votes
1answer
237 views

Relative URLs and trailing slashes

I've looked around the web for this before, and I suspect the answer is "you can't", but since I've not yet found an answer which is that definitive, I think it's worth asking here. The closest I've ...
2
votes
2answers
80 views

Vim: Match spaces at end of line but not lines consisting of a single space

I realise that in vim, I can highlight trailing spaces at the end of a line using match /\s\+$/ Now I would like to exclude those lines that contain exactly one space from being matched. How do I ...
2
votes
1answer
93 views

Codeigniter pagination class - how to remove a trailing slash from URL

I've noticed the following behavior in CI's pagination class: My initial page (used as $config['base_url']): http://www.example.com/forum When I paginate to page 2 (per_page = 10, offset = 10, ...
2
votes
5answers
2k views

Remove Trailing Slash From String PHP

Is it possible to remove the trailing slash ( / ) from a string using PHP?
1
vote
1answer
65 views

vim for loop “trailing characters” error

Why does this exceedingly simple function: function! ParseAllEvents() let i = 1 while i > 0 exec 'ParseEvent('.i.')' let i -= 1 endwhile endfunction and/or: ...
1
vote
3answers
144 views

How Do I Trim Leading and Trailing Quote from MySQL Row?

I have a MySQL table that I have imported from a CSV file. In this process, a bunch of the entries have quote marks leading and trailing the entry of several data rows. For example the the table ...
1
vote
1answer
314 views

Remove trailing “-” characters from a string in VB6

I need to remove trailing "-" characters from a string in VB6. How can i achieve this? Any help or hints are appreciated.
1
vote
1answer
421 views

Force trailing slash

I'm trying to force a trailing slash to my URLs, but I can't make it work the way I want. This is my .htaccess file: RewriteEngine on #Force trailing slash RewriteCond %{REQUEST_FILENAME} !-f ...
1
vote
2answers
166 views

Export variable with trailing spaces and quotes

How can I export a character variable WITH trailing spaces and quotes? eg: data x; format x $quote17.; x='ruby'; put x=; run; (log extract) x="ruby" What is the most efficient way to get the ...
1
vote
2answers
275 views

Trailing slashes problem

When I type this "http://example.com/Hello%20There/" , it displays the index page wich is : "http://example.com/Hello%20There/index.html" . Well, what I want to do is when the user types ...
1
vote
2answers
370 views

Google thinks my home page IS a trailing slash

I am desperate to know why Google webmaster tools AND analytics are registering my home page as a trailing slash?! There are no crawl errors, 401s, search issues, nothing wrong otherwise. My home ...
0
votes
2answers
25 views

Create string with trailing spaces in Bash

I'd like to loop over an associative array and print out the key / value pairs in a nice way. Therefore I'd like to indent the values in such a way, that they all start at the same position behind ...
0
votes
0answers
34 views

TextMate: remove trailing spaces and save

I'm using this script to remove trailing spaces and then save the file: http://mjijackson.com/2009/01/textmate-macro-remove-trailing-space-and-save The problem is that all my code foldings expand ...
0
votes
1answer
80 views

ASP.NET: HttpRequest.Url truncates trailing '.' characters

If the URL that arrives to ASP.NET application contains trailing full stops - '.', they are truncated from the Url property in HttpRequest. For example if the URL is "http://server/folder.../", the ...
0
votes
2answers
749 views

How to strip trailing linebreaks from a string?

I need to remove some redundant '\n's from the end of a csv I'm importing before it divides the lines up into an array (otherwise I get extra empty rows). public function parseCSV(data:String):Array ...
0
votes
1answer
424 views

Trying to add trailing slash with htaccess, results in a absolute path

What I'm trying to achive is to have all urls on my page look like http://domain.com/page/, no extensions, but a trailing slash. If a user happends to write http://domain.com/page or ...
0
votes
2answers
289 views

ASP.NET - Trailing Slash and Tilde

I've found what seems like a bizarre problem with IIS 6.0 and .NET 3.5. I always use the tilde for all URLs (eg: ~/mypage.aspx) so if I go to mydomain.com/mypage.aspx, everything works fine. If, ...
0
votes
1answer
436 views

How to remove trailing symbol for a constant in Rails initializer?

How does one remove trailing character correctly in the following sentence if it's in config/environment.rb file. KEY = ENV['KEY'].delete "\r" It produces the following error: undefined method ...
0
votes
2answers
293 views

Mod_Rewrite Trailing Slash Issue Problem/Question

I am trying to lock a client out of a PHP application I created them but, still allow them a "virtual" access to the doc root using: RewriteCond %{DOCUMENT_ROOT}/ftp/%{REQUEST_URI} -f [OR] ...