The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
25 views

Python 3.3: separation argument (sep) giving an error

I am very new to programming and I'm starting out with Python. I tried to look up my question here but didn't really find anything. I'm trying to work a very simple print command but I'm getting an ...
0
votes
1answer
26 views

Hadoop - output key/value separator

I want to change the Output Separator to ; instead of tab. I already tried: Hadoop: key and value are tab separated in the output file. how to do it semicolon-separated?[SOLVED] but still my Output ...
1
vote
1answer
28 views

Increase height of UITableViewCell separator

I have subclassed and colored tableview cells in a tableview that is on a view with an image. What I need to do is increase the height of the cell separators. I know this has been asked before, but ...
0
votes
1answer
25 views

Remove separatot above headerview in uitableview IOS

I've got a problem with my uitableview custom headerview, there is separator of last cell in previous section above my headerview, how can I remove it?
0
votes
2answers
47 views

Invalid double in converting String to Double

i get a NumberFormatException : invalid double "111,000,000" in this line of code : double SalePotential = Double.valueOf(EtPotential.getText().toString()); in the beginning i've used Numberformat ...
0
votes
3answers
67 views

How to set ',' as decimal separator with R, RStudio

Even though my Windows 7 locale settings specify using "," as a decimal separator, R and RStudio give me a "." separator. Is there any way to change this? Note the "LC_NUMERIC=C" setting in the locale ...
0
votes
1answer
36 views

How do I make separators for a ListView with a SimpleAdapter

I'm new to the java programming language and I'm trying to build an app. The app has to make a list of worked hours that have been saved in an MySQL database. I found an example app, that helped me ...
0
votes
1answer
43 views

JSon to CSV with Java using CDL: possible to replace comma-sep. by semi-colum sep. values?

Everything is in the title :) I'm using org.json.CDL to convert JSONArray into CSV data but it renders a string with ',' as separator. I'd like to know if it's possible to replace with ';' ? Here is ...
0
votes
1answer
28 views

CSS Separator issue, markup/syntax help needed

I am building my first template so im sure this is due to incorrect markup of some sort. I have been trying to get two image seperators to display between 3 boxes on my homepage. One appears to be ...
0
votes
1answer
28 views

TemplateField decimal places and thousand separator

I am using .net 2.0 and have a gridview with a templatefield where I have a label that has a text and a tooltip. The text is a numeric value and the tooltip is a description of the coin of that value. ...
1
vote
1answer
59 views

dynamic gridview separator in android

In my application I have to change the gridview separators dynamically, on user interaction (e.g. horizontal separator with red color, and 1px with; vertical separator with blue color and 2px with...) ...
1
vote
1answer
36 views

How to write unit separator into XML 1.0?

I have "unit separator" 0x1F stored in database. All I wanted is to use MSXML6.dll to export the unit separator to XML 1.0 format. Here are the pains I've got: Write 0x1F into XML file directly, ...
0
votes
0answers
41 views

gridView vertical separator not visible in android

I generated a custom grid view, by passing to my adapter an ArrayList with Arrays of Strings. Everything is working fine, my gridView is generated as I want (every String Array represents a column in ...
0
votes
1answer
40 views

How to use the SwingX JXTitledSeparator?

I am trying to use the JXTitledSeparator from SwingX to create a separator with title, like this : Here is the code i am currently using : JXTitledSeparator xTitledSeparator1 = new ...
0
votes
1answer
34 views

How to set separator of one section of tableView to clear

I have four sections in my tableView, and I want only the last section to have a clear separator. I know how to do this for the whole tableView, but cannot find any solution for my question. The only ...
1
vote
1answer
69 views

NSNumberFormatter with comma decimal separator

I tried to convert an NSString like "12000.54" into "12.000,54". I wrote an NSNumberFormatter instance. NSNumberFormatter *formatter = [[[NSNumberFormatter alloc] init] autorelease]; [formatter ...
-3
votes
0answers
38 views

Separate text with PHP (not explode) [closed]

I want to split text in php (Not with explode!) i have an input box th values is A B C D And how can i get an array or variabl or anithing else? so I would like to be separated ...
1
vote
1answer
18 views

Regex for splitting txt db file

I'm writing a txt database file to sql converter, and I need to split the items in the rows. The problem is that among the items there might be scripts which can hold multiple commas (which are the ...
1
vote
0answers
68 views

How to remove the separator line in the spinner?

How to remove the separator line in the spinner? For example, how can I remove/control these white separator lines? P.S. This is the row layout: <LinearLayout ...
0
votes
4answers
86 views

Hide “Separator” in XML View - OpenErp

I need to hide a "Separator" and all it's child items (trees, fields, buttons, etc), i'm stuck and don't know how to achieve this <separator string="Quotations" /> <field ...
3
votes
2answers
69 views

Remove thousand's seperator [duplicate]

I imported an Excel file and got a data frame like this structure(list(A = structure(1:3, .Label = c("1.100", "2.300", "5.400"), class = "factor"), B = structure(c(3L, 2L, 1L), .Label = ...
0
votes
2answers
63 views

Comma separators in a string of digits

There is a string data: {4,15,26,7} Comma separator is used to separate digits. this.points=new ArrayList<Integer>(); for (int i = 0; i < data.length(); i++) { ...
0
votes
1answer
39 views

mysql price field separator change before insert on xml import

I am importing xml file to MySQL. I've got a: Warning: number_format() expects parameter 1 to be double, string given in /home/dailyadc/public_html/include/form.php on line 224 That means that is ...
0
votes
0answers
77 views

itextsharp CODE128 barcode group separator

I'm using iTextSharp library to generate PDF with bar-codes. The bar-code type must be CODE128 I'm trying to insert group separator (GS) character in some parts of the value. In example, this is ...
1
vote
1answer
38 views

How to make awk gsub return a tab-separated line?

I use awk gsub to replace a string in a specific column of my tab-separated file: cat test.txt 1 1 2032 1 2 1 2032 2 3 1 999 3 4 1 2032 4 5 1 9999 5 However, the ...
0
votes
2answers
53 views

Comma separator in aChartEngine

I'm using aChartEngine to design charts for my app reports but i wanted to know that is it possible to have a comma separator for XYSeries in BarCharts? any help would be appreciated!
0
votes
1answer
58 views

How to check for “separators” in text files?

I am starting the development of a new program (for school project) in which users login and have a "timeline" like page. For now it's a simple command line C project. I would like to store the data ...
0
votes
1answer
38 views

print out found result of regexp in RS

Hi all can you help me print out result of regexp in RS ? awk 'BEGIN {RS="--[0-9a-zA-Z]+--"} /pattern/' awk-test.txt pattern="--[0-9a-zA-Z]+--" can be equal --95700e1b-- or --0dcaf754-- or else awk ...
0
votes
1answer
48 views

what is the point of using DIRECTORY_SEPARATOR over “/” in php

Why would I choose to use . DIRECTORY_SEPARATOR . instead of . "/" . ? My initial thought was that there could be a different separator instead of a slash, but if I'm designing, say, a Wordpress ...
0
votes
2answers
86 views

How can I redirect stderr from dialog using newlines as the output record separator?

Every time I run the command I want stderr redirected to /tmp/test. The test file should have records separated by newlines instead of going to the same line. If my input for option ...
0
votes
1answer
126 views

How can I hide bottom separator in some UITableViewCell

I'm developing an app using UITableView Grouped Style and I want to hide some cells bottomSeparator but I don't know how. This is the result I want : Result I want I've tried this : ...
1
vote
2answers
50 views

Get line separator of IFile

I'm looking for a way to get the line separator of an IFile object. My current implementation messes up newlines on files, written on other systems, but I heavily rely on correct offsets and line ...
0
votes
1answer
78 views

XAML StackPanel divided

is it possible in XAML to separate in a StackPanel control (or any container in general) rows and columns with lines? So that it looks for example like a chessboard? And also when the user resizes the ...
0
votes
0answers
134 views

Can't separate columns in csv file [closed]

I'm trying to load a csv file in r, and I know the csv file has 46 columns, but when I call the command for reading the file it only yields 2 columns. data<-read.csv("data.csv", header=TRUE, ...
0
votes
3answers
64 views

PHP combining variables

I have a 'foreach' PHP loop. Each time the loop is run, I am combing the value in the current loop iteration ($CurrentTillID) to a variable. Here is my code: $separator = ','; $tillDetails = ...
0
votes
1answer
385 views

Export double to Excel - decimal separator issue

I'm having problems when exporting data in double format to Excel using Microsoft.Office.Interop.Excel. Numbers like -49,65454324566 (using comma as decimal separator) in the code are exported as ...
0
votes
1answer
58 views

Java, separator between JMenuBar and other components [closed]

in Java Swing how can I change the color of the separator between JMenuBar and other components. Alternatively I would like to remove the separator.
-2
votes
3answers
66 views

How to separate strings in an istream only by '\n'? [duplicate]

Given a file that contains a string "Hello World" (Note that there is a space between 'Hello' and 'World'). int main() { ofstream fout("test.txt"); fout.write("Hello World", 12); ...
0
votes
0answers
29 views

Extra separator at bottom of UITableView

I have a sectioned UITableView with a custom 30 pixel height for the rows. However, I am getting an extra separator at the bottom. It seems to be positioned 44 pixels below the top of the last row. ...
0
votes
2answers
86 views

PHP how to remove last separator?

I have tried a tons of variations, but I can't find the solution. Previously the output was like this: word a word b word c etc I have changed some parts of code and now output is: word a | word ...
0
votes
2answers
186 views

Repeater Control With SeparatorTemplate

How to create horizontal line after each row in repeater control ? I think that I should use "SeparatorTemplate", I tried but didn't work. Can you tell me where to put the separator in the code, to ...
0
votes
0answers
36 views

Separating data from webservice output

How do i get individual data from this object?? 01-31 15:37:15.783: D/Oh gosh!(24530): anyType{date=Jan 31 2013 5:11PM; name=future; id=346; description=htdutd; ...
0
votes
1answer
50 views

elements (image) between <li> in horizontal <ul>

I need to place image separator between [ li ] tags.After one hour googling I find two common ways to add separator: make right(left) [ li ] border visible (not in my case) set background for [ li ...
0
votes
1answer
103 views

SQLite define output field separator on a single line command

I need to use a single command line to fetch a set of records from a database. If I do this: $ sqlite3 con.db "SELECT name,cell,email FROM contacts" I get output with a separator "|", where the ...
0
votes
0answers
119 views

ToolbarManager: Why separators are not displayed?

This is my code: Toolbar toolbar = new ToolBar(this, SWT.NONE); toolbar.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1)); ToolbarManager toolbarManager = new ...
0
votes
5answers
112 views

How to split python strings with multiple separators?

I've string which includes some irrelevant characters for example : "t1, t2, t3" If I'm splitting it by split(",") method I'm getting a list where second and third items include also the white ...
0
votes
1answer
95 views

How to put a horizontal line (separator) between rows in Gtk::TreeView

I'm writing a program using gtkmm-2.4 GUI package in Linux. How can I put horizontal lines as separators between rows of a TreeView?
0
votes
0answers
17 views

Synth Separator

I try to use synth in my project but i could not do what i want Such as; i cant see separator in JMenu although i use this code <style id="separator"> <opaque value="true" /> ...
-1
votes
4answers
89 views

Two (or more) consecutive newlines in String in Android

I need to add in a String several line breaks, but does not work, it only adds the first line break. But in java it works. For example, for this String: String s = "one\n\ntwo"; prints in android: ...
0
votes
0answers
172 views

dijit.form.FilteringSelect how to add separator programmatically

I am new to Dojo. I am writing up a page which loads the FilteringSelect with a memory store programmatically. Memory store gets the data from a Json service. I want to add separator to ...

1 2 3 4 5