Tagged Questions
0
votes
2answers
41 views
strip_tags is keeping <a> but stripping its attributes
As the title says, when I use strip_tags($text, "<a>...<others>") and I insert hyperlinks into $text, I am left with an output of <a> rather than <a href='...'>. How can I get ...
0
votes
2answers
24 views
String formatting prob for making database value inside a file
I have a bean class which does maintain user data:
soppose I have created a postgresql DB table like this:
StringBuffer sqlStr = new StringBuffer();
sqlStr.append("CREATE TABLE Users ("
...
1
vote
1answer
58 views
Formatting Human Names - PHP (or any language) library?
Is there a way to format human names? For example, "joHn dOE" should be "John Doe". Or "angus macgyver" should be "Angus MacGyver". etc.
I know that any solution is probably not going to be complete ...
0
votes
2answers
46 views
Custom numeric format string based on number sign
I am trying to format a decimal (as a percentage without the % sign), displaying brackets () around negative numbers and displaying positive numbers as is.
var returnString = value.HasValue
...
0
votes
0answers
29 views
Parsing scanned tests into database
I have a lot of ABCD multiple choice tests I've compiled that I want to compile into a single question database, and I also have OCR software to get the text from each test.
However, I need to ...
2
votes
0answers
74 views
Shortening large numbers to improve readability [duplicate]
Is there a generic/better way to shorten larger numbers?
Numbers > 1000 should to shortened to two decimal places and appended a 'k' e.g. 1543 should become 1.54k, while 1504 should be shortened to ...
3
votes
2answers
197 views
how to remove the thousand separator using cultureinfo?
I try to remove the thousand separator so I'm experimenting some code, but it throws and exception. I tried with Convert.ToDouble, Convert.ToDecimal etc.
it says:
Convert.ToDouble("1.234,45") ...
1
vote
2answers
110 views
Lotusscript: Change width of Messagebox
Short and easy:
Is there a possibility to adjust the width of a Messagebox? I couldn't find any info about that in the documentation.
My Messagebox uses only about 50% of the available screen width. ...
1
vote
0answers
48 views
How to Custom Format Custom Data WPF 4.5?
I am developing some software that generates reports from event data collected from some devices. The data is stored in a database. I want the user to be able to template the output filename of the ...
1
vote
3answers
75 views
Number Format in java
Is there a way to do a format on double to String in java where i would want the output as:
Intended output:
if n=12.4 => 12.4
if n=12.0 -> 12
I was using String.valueof(n) with returns
Current ...
0
votes
1answer
52 views
Does iOS have any library supporting to format number like NSNumberFormatter for Mac OSX?
I want to format a number to string by using a format string working like NSNumberFormatter for Mac OSX (NSNumberFormatter doesn't support format string). Does iOS have any library supporting to ...
3
votes
2answers
117 views
Javascript equivalent to python's .format()
I would like a javascript function that mimics the python .format() function that works like
.format(*args, **kwargs)
A previous question gives a possible (but not complete) solution for ...
2
votes
1answer
125 views
python centre string using format specifier
I have a string called Message.
Message = "Hello, welcome!\nThis is some text that should be centered!"
Yeah, it's just a test statement...
And I'm trying to centre it for a default Terminal ...
1
vote
2answers
96 views
Organize values like a matrix in csv datafile
Actually I am writing a file converter tool. The data values represent a 120x120 matrix. My first thought was two nested for loops and just a new line inside the first: Easy.
The input file has a ...
0
votes
2answers
227 views
JAVA SimpleFormatter, is impossible to set the regex
I am adding a logger to my program, surfing the net I add to my code a very simple logger with the basic 2-line definition:
private static final Logger LOG = Logger.getLogger(GUI.class.getName());
...
0
votes
1answer
114 views
Data is not updated when using asp:Literal with string.Format
We are using string.Format("{0:(###) ###-####}" to display formatted phone numbers in a DetailsView. An example of the phone number is:
(516) 123-4567
<asp:TemplateField HeaderText="Primary ...
1
vote
1answer
202 views
center align a string to be printed onto a file
why is it such a difficult task to find a String function to center align my string when left and right align is so simple using Formatter etc.
I want to format my output file
...
1
vote
2answers
70 views
Writing a list of variables and their values from Matlab to text
I'm trying to write something like the following to file.
keys = {'one','two','three'}
values = [1 2 3]
This is my code so far:
function save_recording_results(keys,values)
keys=keys.';
...
3
votes
2answers
130 views
How can I format numbers to have the same number of digits?
I have a label to show an unsigned integer, and it has a maximum lenght. I'd like to format numbers to be displayed like this:
1 = "1"
1000 = "1,000"
12400 = "12.4k"
...
0
votes
1answer
174 views
PHP: formatting time Stackoverflow or Apple Mail-style
There is this really nice function from the php.net documentation that enables you to format time in a Facebook-style manner (e.g., 2 minutes ago, 4 weeks ago, or 3 years ago).
However, I prefer the ...
0
votes
2answers
69 views
Collapsing java syntax to single line
The following ensures an output of char(4), so that 5 is 0005 and 43 is 0043:
if ( var > 1 && var <= 9 ) {
o.setOutput (String.format ("%0001d", i.getInput());
else if (var > 9 ...
0
votes
1answer
969 views
DataFormatString for percent with decimals only when needed?
I am trying to use these on EF code first properties with MVC:
http://msdn.microsoft.com/en-us/library/0c899ak8.aspx
Specifically:
[DisplayFormat(DataFormatString="##.##%")]
public double? ...
1
vote
3answers
78 views
Why does echo combined with printf displays wrong output?
Does anyone know why when I execute this :
#!/usr/bin/php
<?php
$eff_theo = array_fill(0, 10, 100);
for ($i = 0; $i < 10; ++$i)
echo printf("%5d", $eff_theo[$i]).' ';
echo PHP_EOL;
?>
...
3
votes
1answer
497 views
Format TimeSpan to mm:ss for positive and negative TimeSpans
I'm looking for a solution in .net 3.5 I wrote the following working solution:
private string FormatTimeSpan(TimeSpan time)
{
return String.Format("{0}{1:00}:{2:00}", time < TimeSpan.Zero ? ...
0
votes
2answers
360 views
objective-c file size formatter
Is there build in methods for formatting file sizes in Objective C? Or may be you could suggest me some library/source code/etc.?
What I mean is you have some file size that should be displayed ...
2
votes
1answer
158 views
Any easy way to export data to multiple formats?
I've written a handy little class to generate CSV files from various data sources. For example, I can pass in a DataTable or a collection of IEnumerable objects (each effectively representing a 'row') ...
3
votes
2answers
449 views
String.Format vs int.ToString in regards to iCustomFormatter issue
I have the following two lines of code:
var BadResult = (100).ToString("B", new CustomFormatter ());
var GoodResult = String.Format("{0}", 100, new CustomFormatter ());
Whereas, BadResult obviously ...
2
votes
1answer
2k views
crystal report format string with dashes
I have crystal report in which I want to format the case no into sumthing like this 000-00000-00. I used totext method but it won't work. it says bad number format string. I tried these codes but ...
0
votes
1answer
597 views
How can I print a string using .format(), and print literal curly brackets around my replaced string [duplicate]
Possible Duplicate:
How can I print a literal “{}” characters in python string and also use .format on it?
Basically, I want to use .format(), like this:
my_string = ...
0
votes
4answers
171 views
Formating text file
I have a txt file that I would like to alter so I will be able to place the data into columns see example below. The reason behind this is so I can import this data into a database / array and ...
2
votes
2answers
223 views
Do C++ formatting libraries generally fall back to *sprintf for numeric formatting?
I am wondering whether "all" C++ formatting libraries eventually fall back to a *sprintf function to format numbers.
I am asking this because:
Looking at the iostreams library that comes with ...
3
votes
1answer
3k views
how to printf a long typed value using input size modifier?
This is basically what I am trying to do
// ... some code, calculations, what have you ...
long timeToAdd = returnTimeToAddInLongFormat();
// lets output the long type now, and yes i need the width ...
6
votes
2answers
6k views
Using Python String Formatting with Lists
I construct a string s in Python 2.6.5 which will have a varying number of %s tokens, which match the number of entries in list x. I need to write out a formatted string. The following doesn't work, ...
2
votes
6answers
192 views
How can you retain the quotation marks when outputting a shell variable?
The following line:
`eval echo echo $VAR=\\$$VAR` >> $FILE
will output to a file called $FILE:
FOO=value_of_full
BAR=value_of_bar
I want to I output quotes, such as in:
...
0
votes
1answer
323 views
How to create custom boost::posix_time to_string formaters?
Currently I have to use stuff like
ptime t = from_time_t(last_write_time(p));
std::string Created = boost::posix_time::to_iso_extended_string(t) ;
or:
ptime t = from_time_t(last_write_time(p));
...
0
votes
4answers
359 views
VB6 Formatting a string Problem
My question is simple..
How do I convert a string like "445B986D2DD3B41852964ABA11408E82" to 445B9-86D2D-D3B41-85296-4ABA1-1408E82
It should be in the format ...
0
votes
3answers
188 views
Function to parse date to parts
Is there any nice function in PHP to parse the date into parts given the specified format?
e.g.
some_function('20112000', 'dmY')
some_function('2000-11-20', 'Y-m-d')
some_function('2000 text ...
1
vote
1answer
190 views
modifying the “G” string formatter in C# to use exponents when number contains at least two zero d.p
Is it possible to modify the standard Numeric Format "G" so that the exponent is used when the number contains more than 2 zeros after the decimal place. If not, alternative solutions will be ...
4
votes
7answers
467 views
Formatting a string into multiple lines of a specific length in C/C++
Is there a common C/C++ library (or common technique) for taking a line(s) of input text and splitting the words into separate lines. Where each line of output has a max width and words are not split ...
4
votes
1answer
4k views
Fixed width number formatting python 3
How do I get an integer to fill 0's to a fixed width in python 3.2 using the format attribute?
Example:
a = 1
print('{0:3}'.format(a)}
gives ' 1' instead of '001' I want. In python 2.x, I know ...
3
votes
4answers
2k views
.NET GUID uppercase string format
I need to format my GUIDs in the dashed format, all uppercase. I know using myGuid.ToString("D") or String.Format("{0:D}", myGuid) gives the dashed format, but using an uppercase D as opposed to a ...
2
votes
1answer
192 views
float << operation by setting the precision for both integer part and float part
I would like to print floating point numbers in a format like this.
01234.56
I use the following function to round a float to n digits.
double round(double val, int precision)
{
...
4
votes
2answers
3k views
python logging string formatting
I am using python's log formatter to format log records and i have a fmt value of
fmt = "[%(filename)s:%(lineno)s] %(message)s"
What i would like is that "[file.py:20]" to be stretched to 10 ...
2
votes
6answers
274 views
Real positional string formatting?
(Note: I know of Boost.Format, I'm looking for a better way to do the following.)
First a use-case example: In some countries, you name a person by calling his / her surname first and the forename ...
1
vote
3answers
148 views
What is the equivalent in python to this code line in perl $conf{svnlook} log --revision $rev $repo
What is the equivalent in python to this code line in perl
$conf{svnlook} log --revision $rev $repo
i'm looking in python for something as neat as that...
10
votes
4answers
7k views
How to generically format a boolean to a Yes/No string?
I would like to display Yes/No in different languages according to some boolean variable.
Is there a generic way to format it according to the locale passed to it?
If there isn't, what is the standard ...
1
vote
1answer
241 views
Include Font while pasting to Clipboard
I'm trying to include the font "KaiTi" while setting text on the clipboard, so that wherever I paste the data, the "KaiTi" Font will be the font that the text is in, inevitably keeping all of the data ...
0
votes
2answers
2k views
3
votes
4answers
7k views
How to correctly create a tab delimited text file in Java
I am trying to create a tab delimeted text file so that the output appears like columns but for some reason the tab appears on different locations. This is caused by the fact that the data values are ...
2
votes
1answer
522 views
How to quickly format floating point number in Android game loop?
I'd like to display a millisecond timer value in a game.
String.format is hellishly slow on Android, so I can't use it. I currently use
this:
long elapsedMillis = ...; //elapsed milliseconds
int ...

