Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
4answers
10k views

Eliminate Extra separators below UITableView - in iphone sdk?

When I set up the tableview say with 4 rows, there are still extra separators lines below the tableview (or extra blank cells) How would I remove these cells (like in this case I just need 4 top ...
9
votes
2answers
13k views

Android: custom separator (or even item) in ListView depening on content of item

I've a ListView with items containing information about places with a rating and the distance to the current location. The items are sorted into groups: Group 1: within 500m Group 2: 500m - 1km ...
8
votes
1answer
225 views

Python splitext

In python, why is os.path.splitext using '.' as extension separator instead of os.extsep?
7
votes
5answers
124 views

How to keep the delimiter while using RegEx?

I did a question about punctuation and regex, but it was confusing. Supossing I have this text: String text = "wor.d1, :word2. wo,rd3? word4!"; I'm doing this: String parts[] = text.split(" "); ...
7
votes
4answers
1k views

HTML + CSS: Ordered List without the Period?

I think the answer to this question is no... but does anyone know of a an HTML/CSS way to create an ordered list without a period after the numbers? Or, alternatively, to specify the separator ...
7
votes
3answers
2k views

Separators For Navigation

I need to add separators between elements of navigation. Separators are images. My HTML structure is like: ol>li>a>img. Here I come to two possible solutions: To add more li tags for separation ...
6
votes
5answers
202 views

C/C++ Syntax - Separating statements with , instead of ; legal?

I just ran into this piece of code that does this : delete a, a = 0; It compiles and runs just fine. But isn't this supposed to be : delete a; a = 0; Why is separating statements using , ...
6
votes
3answers
311 views

How to add menu items separators which work as expected on OSX?

On Windows platform, with the VCL, when we want to add a separator in a menu, we add a TMenuItem with a Caption := '-'; With FireMonkey, we add a TMenuItem with a Text := '-'; It works as expected ...
6
votes
3answers
1k views

Rails RESTful resources using to_param for a field that contains separator characters

I want my Rails 2.3.2 app to respond to and generate URLs like so: /websites/asd.com /websites/asd.com/dns_records/new In my config/routes.rb, I have: map.resources :websites, :has_many => ...
5
votes
6answers
14k views

Vertical line spacer between two divs

So I have two divs. One left div with navigation links and one right div that populates with content depending on what link you click on the left. I would like to have a vertical gray line between ...
4
votes
2answers
135 views

Java CSV parser with string separator (multi-character)

Is there any Java open source library that supports multi-character (i.e., String with length > 1) separators (delimiters) for CSV? By definition, CSV = Comma-Separated Values data with a single ...
4
votes
2answers
1k views

WPF Separator position

I'm using a Separator to draw a vertical line inside a Border. At first this was ok because the line needed to be centered, but now I need to position it at a custom x-position from the left border. ...
4
votes
2answers
216 views

C# : having a “+” in the class name?

class name: MyAssembly.MyClass+MyOtherClass The problem is obviously the + as separator, instead of traditionnal dot, its function, and to find official documentation to see if others separators ...
3
votes
5answers
83 views

Printing a new line in a file, in Java

I aim to make an index of all files with a particular extension and store it into index.txt. I am getting all the right results but not getting the 'files' onto the new line, this is a snapshot of my ...
3
votes
5answers
174 views

Java delimiter while reading text file - regex/or not?

I am trying to read a text file written in this form: AB523:[joe, pierre][charlie][dogs,cat] ZZ883:[ronald, zigomarre][pele] I would like to create my structure and retrieve the information ...
3
votes
3answers
754 views

Creating a ComboBox with one or more separator items?

I'm using Delphi7 and I'd like to have a ComboBox with separator items (Just like in popup menus). I've seen this beautifully implemented in Mozilla Sunbird (I know, it's not Delphi...) the following ...
3
votes
2answers
261 views

Move separator elements upwards in xml hierarchy

I have an xml document with separators deep down in the hierarchy. <A> <B> <C id='1'/> <separator/> <C id='2'/> </B> <B> <C ...
3
votes
1answer
241 views

How can I get the Double.toString() behaviour AND thousands separator?

I want to add the thousands separator to a variable of type double. I have tried using String.format("%,f", x); and similar, but it seems to have a fixed number of decimal places, unlike ...
3
votes
3answers
2k views

Vertical separator in WPF Ribbon

How can I add Vertical separator to WPF Ribbon, to RibbonGroup? I have tried something like that, but i got horizontal separator istead of vertical. <r:RibbonGroup> <r:RibbonButton ...
3
votes
2answers
2k views

How can I get the directory (file path) separator in Perl?

In case of Java, we can get the path separator using System.getProperty("path.separator"); Is there a similar way in Perl? All I want to do is to find a dir, immediate sub directory. Say I am ...
3
votes
4answers
633 views

How do I draw separators?

I am programming in C, using the Windows API, and would like to know how I could draw separators. I'm a total noob when it comes to writing GUI applications, so I may need a code example. Edit: ...
3
votes
1answer
727 views

VIM Autocomplete - Use $ as the word separator

Let's say I have following typed in my source file. var myFunction = function() { }; var anotherFunction = function() { }; var test-m I can now press Ctrl + P and it will show 'myFunction' in the ...
3
votes
3answers
4k views

WPF ToolBar Separator shrinks to nothing when inside a StackPanel

Given the very simple wpf app <Window x:Class="Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" ...
2
votes
2answers
140 views

Question about decimal separator

Is decimal separator ('.' or ',' ) depends of CurrentCulture? I have a problem in serialization XML. When I type ',' as separator, I have an exception. (Culture is setted as DE-de) Regards example ...
2
votes
2answers
224 views

How to add a header to a separator in WPF?

I would like to add a header to a WPF Separator (so that it looks like the top line of a GroupBox). The purpose of this is to separate the view into different sections, and I can't use a GroupBox ...
2
votes
1answer
177 views

Incorrect directory separator on Windows with WordPress

This error occurs with WordPress while uploading. My hosting OS is Windows. It gives an error close to this: Could not upload the file ... \a\b\c\wp-content/uploads/2011/01 Do you know what the ...
2
votes
1answer
611 views

Why is split on `|` (pipe) not working as expected?

I have a string that I want to split. But the separator is determined at runtime and so I need to pass it as a variable. Something like my @fields = split(/$delimiter/,$string); doesn't work. Any ...
2
votes
2answers
1k views

How can I add separating lines between my TableRows that are created programmatically?

I have a TableLayout that is created programmatically in an Android project. I keep adding TableRows as long as there are more rows fetched from the database. Now I want to add separating lines, like ...
2
votes
1answer
303 views

Any way to make a Separator within a WPF menu more narrow?

I've noticed that the margin or height of the default Separator as it is styled in the menus in WPF seems to be slightly larger than some other applications such as Visual Studio 2010. I know that ...
2
votes
2answers
1k views

A vertical Seperator control in a Menu, Toolbar, StackPanel, etc. - Is it possible?

I want to use the Separator control in a vertical way(Lets say in a horizontal StackPanel). Searching around I found this method but it doesn't use the Separator control rather it uses borders and ...
2
votes
2answers
2k views

ListView separators using a CursorAdapter

I have a ListView which is populated using a CursorAdapter. I'd also like to have some separators in my ListView. I have accomplished this with an ArrayAdapter, but I'm not sure how to accomplish ...
2
votes
3answers
2k views

Separator in ListView (WPF)?

I'm gonna insert a Separator in a ListView in WPF , something like this : image I've used the following XAML code, but it dosn't work ! <ListView ItemsSource="{Binding ...
2
votes
2answers
993 views

Hiding UITableView separator behind the contentView

I made a grouped UITableView in iPhone OS 3.0 that looked like the left image. The result is the right image in OS 3.1. The imageView is under the separators. I've tried to put the content view in ...
2
votes
4answers
447 views

+ or - in url?

Most websites use - (like stackoverflow) but most PHP framework generate + encoded url. So, what is the best for SEO ? Use + or - as separators ?
1
vote
3answers
47 views

JSTL forEach separator

Is there a built in feature in JSTL to output separators while doing foreach? The task is to output separators (like commas) after each iteration except the last one (or before each except the ...
1
vote
3answers
46 views

Get first string before separator?

I have strings with folowing structure: 7_string_12 7_string2_122 7_string3_1223 How I can get string before second "_" ? I want my final result to be : 7_string 7_string2 7_string3 I ussing ...
1
vote
0answers
38 views

Remove separator in grouped UITableView

I need to make a grouped table view with custom cells. Each cell must have a background image, so that image of one cell will touch the image of the second cell and so on. I've tried to set the ...
1
vote
1answer
96 views

How can I remove the or change the “horizontal separator” in a Category Panel control?

I've been playing around with the Category Panel Control inside Delphi 2010. I've been able to modify the colors and get them working they way I'd like. However, there's a silver colored "horizontal ...
1
vote
0answers
60 views

iPhone UITableView after refresh cell separation is appear

How to refresh cell and add subview without showing separate line? After reload cell - height is changing and in - (UITableViewCell *)tableView:(UITableView *)tableView_ ...
1
vote
1answer
71 views

Custom menu Separator templated via Generic.xaml

Excuse me for bad english ) I develop dll library that extends WPF Menu/MenuItem classes with some features including skinning. This library has the following classes: public class MyMenu : Menu ...
1
vote
1answer
153 views

Separator of UITableViewCell does not hidden in iOS5

in TableView Controller, viewWillAppear, it is set as: [self.tableView setSeparatorStyle:UITableViewCellSeparatorStyleNone]; self.tableView.separatorColor = [UIColor clearColor]; Everything works ...
1
vote
1answer
199 views

Set decimal separator when formatting h:intputText

I want to know how to set the default decimal separator on my Seam application. I'm working with RichFaces and PrimeFaces on Seam and I have some <h:inputText> that I need to format as money, ...
1
vote
2answers
118 views

Escaping separator within double quotes

I am using awk to parse my data with "," as separator as the input is a csv file. However, there are "," within the data which separated by double quote (" "). Example ...
1
vote
1answer
167 views

GROUP_CONCAT comma separator - MySQL

I have a query where I am using GROUP_CONCAT and a custom separator as my results may contain commas: '----' This all works well, however it is still comma separated, so my output is: Result ...
1
vote
1answer
220 views

Semi-colon as separator in jasperreport csv editions

I want to makes my jasperrepport's csv documents values separated with semicolons instead of commas. I've found net.sf.jasperreports.export.csv.field.delimiter parameter which works if i adds it on ...
1
vote
1answer
71 views

Symfony 1.0 routing separators

I have used Symfony 1.4 before, but I'm maintaining an Symfony 1.0 project right now. Basically, my question is about routing in Symfony 1.0: Is there a way to use anything else than slashes to ...
1
vote
2answers
109 views

Cocoa, Cocoa Touch, and Vertical Separators

In Interface Builder for Cocoa applications, there are two objects in the "Library" pane - Vertical Separator and Horizontal Separator. These two objects are nice to have to lay out views just the way ...
1
vote
1answer
193 views

Load image from resource not working on windows (Java)

why isn't this working on windows but on mac? public final static String PATH = "resources" + File.separator; /** Returns an ImageIcon, or null if the path was invalid. */ public static ImageIcon ...
1
vote
1answer
30 views

Is there a way for double inverted commas to override a separator using sqlite

This is my sqlite code: create table A(A1 text, A2 text); .separator "," import outData.csv A I get an error statement as so: outData.csv Line 4: expected 2 columns of data but found 4 This is ...
1
vote
4answers
236 views

How to change the field separator of a file using Python?

I'm new to Python from the R world, and I'm working on big text files, structured in data columns (this is LiDaR data, so generally 60 million + records). Is it possible to change the field separator ...

1 2 3