Tagged Questions
0
votes
1answer
41 views
String formatting, how to give equal width to 'iiii' and 'wwww'
I want to make the output of JConsole to similar of a table.
I concatenate some Strings to form 'rows'. In order to resemble a real table the (sub)Strings that form the row should have equal physical ...
0
votes
2answers
45 views
Formatting a string based on Input and predefined values
I have 26 values's that i am considering as Special Symbol and are as with special delimeter "$" the value's can be from $A to $Z.
Same time i have a predefined template as:
I have $A,$B,$C.....
...
1
vote
1answer
23 views
System.out.printf with specific flags not returning the expected number
I'm just starting out using Java. And I came across this issue :
This is my code :
import java.util.Scanner;
public class FormatageValeurNumerique {
/**
* @param args
*/
public ...
0
votes
1answer
38 views
.NET verify format string for a dynamic type
I would appreciate some aid in getting the last piece solved please. What I want is to read from configuration the TYPE, VALUE and FORMATSTRING to be applied on the VALUE.
In Code, what I am trying ...
-1
votes
1answer
75 views
String Formatting with Fortran
I have a weird assignment that I am struggling with. I have written a very simple method to insert spaces into a text and produce an evenly formatted (justified) text as a result. The coding in Java ...
1
vote
2answers
48 views
How do I apply a custom format such as “Text:” 0.0% in Excel VBA
I would like Excel VBA to write either a number or a percentage, depending upon a user control.
In Excel, I can hit Ctrl 1 to apply a custom format such as "Text:" 0.0% or "Text:" 0.0.
I have ...
0
votes
5answers
94 views
Set max length of a string c# but end with whole word
I want to truncate text if it is too long but i need it to truncate on a whole word. I have done the following:
var mktText = model.Product.MarketingText;
var countChars = ...
1
vote
1answer
43 views
How do I format floating points within a class in python?
I want to format numbers that are put into this as float, fixed point numbers to two or three decimal places. However my code does not work
class Quake:
"""Earthquake in terms of latitude, ...
0
votes
3answers
32 views
String at the end of a text inside another string
I would like to use one string inside another string, like this:
$url = "http://www.sample.com/index.php?nr=$string[0]";
how should I insert this string at the end?
0
votes
1answer
29 views
Formatting a URL string
I have a list of cities which have been stripped of punctuation and i need to format the URL correctly. My lists are ['New', 'York', 'NY'] and ['Lansing', 'MI'] and i need to format the query so that ...
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 ("
...
-4
votes
1answer
43 views
Objective C - Format integer with chars in the middle [closed]
How do I convert, for example, the number 123 as: "00\00\00\12\3" ?
Can stringwithformat do that?
0
votes
2answers
56 views
C# string format best overloaded method match error
I am completely unfamiliar to C#, so bear with me.
private static string GetFormattedValue(string dataType, dynamic cellValue)
{
string formattedCellValue = string.Empty;
if ...
0
votes
2answers
61 views
Removing Tabs in a String
I need to format this String:
"public class geo {
public static void main(String[] args) {
if (true) {
System.out.print("Yes");
if (false) {
...
0
votes
1answer
27 views
How to format a string with a localized string?
I want to bind a value and format it with a localized string. Something like that :
<TextBlock Text="{Binding Age, StringFormat='\{0\} {Binding Path=LocalizedResources.Global_AgeSuffix, ...
0
votes
1answer
89 views
Remove string “Array” from print_r()'s output
How can I remove the string "Array" in the printout from print_r()?
I have tried using string replace, but it didn't work.
Example output:
Array (
[0] => Array (
[id] ...
0
votes
1answer
97 views
How to format a column with awk and printf when values are either numeric or string
I have the following file, where I want to left-pad with zeros when the value is numeric, but leave it as it is when value is a string:
cat test.txt
2032
12
XXXXX
507
334
This works only for ...
0
votes
3answers
92 views
Erlang: Converting TCP sent string into its proper form e.g. <<“SomeString”>> to “SomeString”?
I have a client and a server and I use the client to send a string such as "Hello" and it shows up on the server side as <<"Hello">>. Is there a way to simply convert ...
1
vote
2answers
57 views
Trouble removing newline characters
I have been trying to rewrite a text file with python, where I go into a file,
grab each line, append an additional string onto the line, then rewrite the
newly appended line to the text file. The ...
0
votes
1answer
172 views
Format string to HTML in C#
So I am writing a game with Unity and I am sending players an email with all of their stats on how they played. The way I send the email is I format a string that has the html already written that ...
0
votes
2answers
109 views
How Do I Properly Convert HTML to String?
I'm a noob to iphone development and I am trying to convert html data into string format. Currently, I am using stringByConvertingHTMLToPlainText to accomplish this, but it ignores the formatting of ...
1
vote
3answers
65 views
Python properties and string formatting
I was under the impression python string formatting using .format() would correctly use properties, instead I get the default behaviour of an object being string-formatted:
>>> def get(): ...
1
vote
1answer
214 views
Formatting numbers with commas in D3
When I create a chart with D3 the axis labels have commas in there to delimit thousands, millions, etc.
Is there a D3 library that I can call passing it a number and getting back a string formatted ...
2
votes
2answers
75 views
New style formatting with tuple as argument
Why can't I use tuple as argument to formatter in new style ("string".format())? It works fine in old style ("string" %)?
This code works:
>>> tuple = (500000, 500, 5)
... print "First ...
0
votes
2answers
134 views
How can I use a filename with special characters in a Content-Disposition header?
I have a problem with some php code:
$link = $_GET['url'];
$name = $_GET['name'];
$str = '[wanted-web.ro]';
header("Content-Disposition: attachment; filename=$str $name");
header("Content-type: ...
1
vote
3answers
295 views
Error! using CDATA in strings.xml resource Android
I have a string resource in my Android project, and I am using a CDATA section to embed my string in XML:
<string name="ackng"><![CDATA[
<html>
<body>
...
-1
votes
1answer
60 views
Python convert decimal number in a string without “.” [closed]
I have a tuple of two numbers,
for example: data = (0.25, 0.25)
I wish to convert this to a string like this:
025and025
without the ".".
2
votes
2answers
212 views
String array text formatting
I have this String:
String[] text = {"Address 1: Street nr.45 ",
"Address 2: Street nr.67",
"Address 3: Street nr. 56 \n Phone number: 000000000"};
Which gets used later by:
...
0
votes
6answers
96 views
Easiest way to remove trailing tab in a string in java
If you have for example a list of tab-separated values:
foo1\tfoo2\tfoo3\tfoo4\t
The last \t was added due to automatic appending of the \t with each +=.
How do you remove that last \t in a easy ...
0
votes
0answers
103 views
ValueError: unsupported format character ''' (0x27) at index 383
I have a problem with String Formatting in SQL query using Python. Here is the code:
laikas = datetime.datetime(2012, 9, d, h, m, 00)
cur.execute("SELECT (player.player_name) as str_player_name … ...
0
votes
2answers
252 views
Inserting new lines into a 'RichTextBox' from a string?
Currently in my application I have a string that is read in from an XML file however the whole string is concatenated together and I want to be able to split up the string up over multiple lines of ...
0
votes
2answers
112 views
How to concatenate and compress string variable at the same time in python ?
Say I have this variables below ( id , a,b,c,d )
id a b c d
x 2 4 5 7
y 4 5 9
z 1 2
I want to create a new concatenate variable named 'total' from these strings , so I used this code ...
1
vote
4answers
191 views
python 3.2.3 ignore escape sequence in string
I'm new to Python and I'm using one of the examples I found here to read lines from a file and print them. What I don't understand is why the interpreter ignores \n escape sequence:
Text file:
...
0
votes
3answers
136 views
How do I save a formatted string into a string variable?
I am creating a C# method that should
1. take in a string
2. format that string as Currency (no decimal or cents) and return it
String.Format is great at formatting, but its formatting applies only ...
3
votes
2answers
123 views
How to Left Justify part of a String in python?
I want to left justify the right part of a string. I am writing an IRC Bot's HELP command and I want the description to be left justified at the same width throughout:
List of commands:
## ! ...
1
vote
2answers
244 views
Converting a datagrid cell to a string in a WPF C# application
I'm currently trying to get the contents of a selected row in a datagrid to appear in individual text boxes outside of the datagrid when a button is pressed. As it stands, I can get the values into ...
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 ...
3
votes
1answer
177 views
How can I print control characters in a readable format?
I have a program which tends to output control characters from time to time, and I'd like them to be printed in caret notation and colored in blue (like vim). Right now, I use a function that calls ...
0
votes
1answer
78 views
Java String formatting solution
I have a string description of a company, which is nasty written by different users (hand-typed). Here is a example (focus on the dots, spaces, first letters etc..):
XXXX is a Global menagement ...
3
votes
4answers
49 views
input int at printin
i'm trying to fix the script i wrote:
import java.util.Scanner;
public class Line2
{
public static void main (String [] args)
{
Scanner scan = new Scanner (System.in);
...
-7
votes
1answer
120 views
Formatting a string [closed]
I want to format my string in java. The string contains yahoo header (which we can see after opening an email then click on "view full header"). Input string is the one which I get through htmlparser. ...
-2
votes
1answer
326 views
Formatting strings %s and %d
my_name='Someone'
print "Let's talk about %s."% my_name
Now i want to ask you
1.how is it possible that %s replaces my name?
2.What does %s actually do?
3.Why doesn't it work when i replace it with ...
1
vote
1answer
39 views
Why do we use the following formatting strings in python
It's only been a couple of days since I started learning Python and had a few questions.
Why do we use formatting strings in python such as:
%s and %d ?
Can anyone tell me some more about ...
1
vote
5answers
1k views
Generate fixed length Strings filled with whitespaces
I need to produced fixed length string to generate a character position based file. The missing characters must be filled with space character.
As an example, the field CITY has a fixed length of 15 ...
-1
votes
1answer
48 views
Objective C: Format a String Outlet
is it possible to format the .stringValue property of a NSString outlet without creating extra variables ??
@property (retain) NSString *myString;
@property (retain) NSString *myStringLabel;
-
...
0
votes
2answers
72 views
Python string formatting error
I'm trying to bind a parameter in SQL:
sql = "SELECT COLUMN_NAME,DATA_TYPE FROM USER_TAB_COLS WHERE TABLE_NAME=UPPER(:TABLENAME)"
print 'TABLENAME=',TABLENAME
sqlqry = sql %(TABLENAME)
but get the ...
0
votes
1answer
63 views
How can I switch a string from “lastName, firstName” to “firstName LastName”?
I have a column full of names written as:
"lastName, firstName"
I want to have a nother column that has this name list written as:
"firstName LastName"
So, how can I switch a string from ...
1
vote
0answers
13 views
dynamically altering an inline in win8
I want to make a sort of typing game; as the user types the textbox/textblock/contentcontrol should highlight(turn into bold) the specific word that the user is supposed to be typing. From what I've ...
1
vote
1answer
652 views
Format string to fixed length in C# .NET [duplicate]
Possible Duplicate:
How to convert an integer to fixed length hex string in C#?
I need to format a range of UInt32 values to a fixed length hexadecimal representation. Formatting in hex is ...
89
votes
2answers
46k views
Sprintf equivalent in Java
Printf got added to Java with the 1.5 release but I can't seem to find how to send the output to a string rather than a file (which is what sprintf does in C). Does anyone know how to do this?




