0
votes
1answer
36 views

Strings are being printing inside quotes

Example: >>> print "How do you do" It prints as 'How do you do' or >>> x = "How do you do" >>> print x 'How do you do' I have just started learning python. All my ...
-2
votes
2answers
83 views

How do I print a string with a printer?

I'm writing an application that need to print some information that would came from a DataGridView, I already have the string I'd like to print, I just don't know how. I found some stuff on the web ...
0
votes
1answer
59 views

regular expression for commenting out all print statements in a file if followed by a particular string

I have a file that looks similar to this: <?php print "hello world" . "<br/>"; print "foobar" . "<br/>"; ... // Process parameter if ($var) { print $var . ...
-4
votes
0answers
21 views

Programming Language Tied to Physical Printing [closed]

I understand that this is somewhat of a complex question, so please bear with me. I would like to build an interactive art piece that takes a string (probably just 1 word that changes) and prints it ...
1
vote
1answer
48 views

Trying to compare two C strings [duplicate]

Edit: This is a duplicate and I've flagged it as so. See [question] Why is "a" != "a" in C? So I'm trying to print out a specific message depending on a field within a struct. The ...
-1
votes
1answer
35 views

I'm supposed to fix this assembly code so that it prints the string 'string' but I'm getting all kinds of errors

.model tiny .code Start: CLEAR: mov cx, 80*25 mov ax, 7120h sub bx,bx l: mov es:[bx],ax add bx, 2 loop l str db 'string', 0 ; reserved word used as symbol : str mov DI, ? ; position y*160 + x*2 mov ...
0
votes
1answer
72 views

Print a fancy string and update it after it's printed to simulate a GUI

I don't know if this can be done but I'm sure I saw this in some scripts, that's why I'm asking. I need to print a string like this one: ++++++++++++++++++++++++++++++ +++++++++++++++ + A 1 ...
-6
votes
1answer
78 views

Convert single word array to individual letter string [closed]

In python I need to print each individual letter from an array that only contains one word and then convert that to a string? can anyone please help me?
1
vote
3answers
49 views

How to print string War Games style one letter at time on same line in java

using this code at the minute which I found on the net String welcome = "Would you like to play a game?"; for (int i = 0; i < welcome.length(); i++) { ...
1
vote
1answer
146 views

opposite of/n? - ESC/POS and PHP right/ left justify on the same line

so I am printing to a networked thermal printer in the office from our webserver (also in the office) so clients can place orders on the website and they pop out on the sales dept desk. Here is the ...
0
votes
3answers
64 views

construct a new method printList which displays the contents of a LinkedList<String>

how to print out this new data structure by constructing a new method printList which displays the contents of a LinkedList aList. using (print) as a template. public void actionPerformed(ActionEvent ...
3
votes
5answers
110 views

How to add “ ” quotes around printed String? [duplicate]

I want to print inverted quotes in java. But how to print it? for(int i=0;i<hello.length;i++) { String s=hello[i].toLowerCase().trim(); System.out.println(""+s+""); ...
0
votes
3answers
114 views

Printing out a Linked list

When I try to print out my linked list of objects it gives me this: linkedlist.MyLinkedList@329f3d Is there a way to simply overide this to print as Strings? package linkedlist; import ...
4
votes
3answers
75 views

Program provides correct output for println(String s); but not print(String s); why?

Below is a code I'm having issues with: public class testOutput { public static void main(String[] args) throws Exception { int count = 50000; String s = "Vinjith"; ...
-1
votes
2answers
118 views

Java TextArea and String (print only 1 word of String)

I got problem with my TextArea String A contain text a,b,c,d I converted String to textarea using method TextArea.setText(A); My problem is that textarea print out abcd instead of it I want it printed ...
0
votes
2answers
38 views

NSString editing by many View Controllers?

I want to print a NSString in my TextView in the mainViewController. But this command should come from a second ViewController. I declared a string in my mainViewController.h but I need this string in ...
0
votes
0answers
45 views

Printing string vector and saving/ loading vector saved files

Hello fellow coders who have more experience then me :) I was wondering if i could get help with this program im making its purpose it to keep a schedule it adds, deletes, save to file, loads from ...
1
vote
4answers
180 views

Print out a string at a specific coordinate, c# Console Application

I want to create a program that prints out a string at any given coordinates. I have a main class and a class i created called ConsoleText. Here are the code for each class: class ConsoleText { ...
0
votes
1answer
94 views

Printing out a string in any given coordinates c# console application

I want to create a program that prints out a string at any given coordinates with any foreground and background colors in a console application. For example, if the string contains "Hello!" i would ...
2
votes
2answers
51 views

How should I make a string from a lazy sequence in clojure?

I use str to construct strings all the time: user> (str '(1 2 3) " == " '(1 2 3)) "(1 2 3) == (1 2 3)" and roughly once a day I get bitten on the ass by: user> (str '(1 2 3) " == " (map ...
0
votes
3answers
96 views

Java - Convert several strings to image format

I was looking for a way to rearrange several arguments recived as strings and one byte[] image and put them all togther as one image (jpg for example) ready to be printed (immidiatly). example: ...
0
votes
4answers
96 views

Bool vals won't print out in console

I am interested in a very simple string verification problem to see if the starting character in a string starts with an upper case letter and then have the console to display true or false. From my ...
3
votes
6answers
201 views

print to output at specific location on line in c++

I am trying to print to a uniform position in a line after printing out a header. here's an example: PHRASE TYPE "hello there" => greeting "yo" => greeting ...
1
vote
1answer
40 views

Appending an Array and Printing php

This code wont work can anybody create a solution? <?php //Assigns 10 to test1. 20 to test2. 30 to test3. $array1 = array(10 => "test1", 20 => "test2", 30 => "test3"); //Creates a ...
0
votes
4answers
412 views

Printing Strings

I am working on a program in which I need to print out a string, I have the string ready, I just need to know how to print, I've never done it so i don't know where to start any ideas? this is what I ...
-1
votes
3answers
192 views

How to print the contents of a two-dimensional array of characters? [closed]

I'm trying to print an array of characters in C but i can't print everything. I want to print : b1 b2 My code: #include <stdio.h> #include <stdlib.h> #include <string.h> int main() ...
1
vote
3answers
115 views

Shell Script - Printing Tokens

Let's say a variable: word="Hi there, how are you?" How would I print it so that the output would be: Hi there, how are you? So far, I've only learn the grep, cut, find, tr commands
0
votes
2answers
54 views

Printing out an object of array's members error

I'm having a little bit of trouble printing out a member of my struct. This is what I have so far: struct Code { char letter; string sequence; } void createCode(HuffmanNode *root, string ...
1
vote
3answers
84 views

formatting with printf while printing an array object

I was wondering if you could do the following: System.out.printf("%10.2f", car[i]); Considering that I have redefined the toString() method. public void toString() { return this.getPrice + "" ...
1
vote
3answers
166 views

Printing the string value in Reverse [closed]

I'm getting a blank output in my console screen when I try to print the string value in a reverse order. If I use for loop for printing the String value is printing, but when I simply print using %s, ...
-2
votes
1answer
158 views

Java Arraylist search for specific string and if found then print

having a problem with this java homework where I input Olympians into the array list: Name, Gold, silver, bronze medals. If the name of the olympian searched is found then print out the name and the ...
2
votes
3answers
621 views

Finding all uppercase letters of a string in java

So I'm trying to find all the uppercase letters in a string put in by the user but I keep getting this runtime error: Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String ...
1
vote
0answers
18 views

Printing string using stack memory

Is there a way to print a string from without declaring it in the .data segment using stack pointers in the MIPS(MARS)
1
vote
1answer
114 views

How do I print punctuation right after a variable? Python

s = "A Colon is beside me" print s,":" I should get A Colon is beside me : But I wanna get >>>A Colon is beside me: How?
-1
votes
8answers
429 views

Removing numbers from string [closed]

I am creating a program for a high school course and our teacher is very specific about what is allowed into our programs. We use python 2.x and he only allows if statements, while loops, functions, ...
0
votes
2answers
513 views

Python 3.2 “TypeError: Can't convert 'type' object to str implicitly”

I am getting an error and I don't know how to refine my code. Basically, what I am trying to do is pseudo echo command in a terminal app. while True: foo = input("~ ") bar = str if foo ...
-2
votes
1answer
74 views

Accessing contents of a string using variables

I am currently working on something that requires me to access individuals parts of a string. I seem to have a strange bug occurring with string syntax. Here is my problem: say you have a string ...
4
votes
1answer
223 views

Why does following C++ program print string's ascii values instead of characters?

This program is supposed to store each word given in standard input stream and count their occurences. The results are supposed to be printed afterwards in order followed by their count. As far as I ...
3
votes
4answers
214 views

Confused about __str__ in Python

Coming from a Java background, I understand that __str__ is something like a Python version of toString (while I do realize that Python is the older language). So, I have defined a little class along ...
0
votes
3answers
234 views

Print function output and strings on same line?

I am writing a program that is supposed to print a word in a box made of stars like this: ************ * * * danielle * * * ************ However, I am getting the following ...
2
votes
3answers
198 views

Display the second line of a string in java

Given a String like : String str= "line1 line2 line3 line4"; How to display one specific line? For example the third one, like System.out.println([...]str[...]); which in terminal will display: ...
1
vote
4answers
485 views

Print string up to a certain word - Java

I was wondering in Java how I could print a string until it reaches the word "quit" in that string and then instantly stop printing at that point. For instance if the string value was: "Hi there this ...
2
votes
2answers
105 views

Why doesn't print() in Python 3.2 seem to be defaulting to UTF-8?

I'm writing scripts to clean up unicode text files (stored as UTF-8), and I chose to use Python 3.x (3.2) rather than the more popular 2.x because 3.x is supposed to default to UTF-8. Maybe I'm doing ...
9
votes
3answers
10k views

Python: TypeError: cannot concatenate 'str' and 'int' objects

I am trying to run this simple program which adds 2 strings together than adds those strings as integers, I don't understand why my code doesn't work well here it is a = raw_input("Enter a: ") b = ...
1
vote
2answers
417 views

Print a float with precision right justified

I'm somewhat of a newb to programming with python so please go easy on me. I'm trying to call the string attribute rjust and also specify precision for a floating point. Here's the code and sample ...
0
votes
3answers
157 views

How to print out specific values from a list

Hey this might be a simple question, but i have been stumped on it for awhile =/ I have a string A: A = ('A:0.1,B:0.2,(C:0.3,D:0.4)E:0.5') And a corresponding list B, that displays the exact ...
1
vote
1answer
239 views

How to reverse a vector of strings in C++? [duplicate]

Possible Duplicate: How to reverse a C++ vector? I have a vector of strings and I want to reverse the vector and print it, or simply put, print the vector in reverse order. How should I go ...
0
votes
2answers
148 views

Printing a string as a variable in Pascal

This is the string variable that I have: question1 := 'Please enter 1, 2 or 3.'; I also have a function which is supposed to print out the question1 variable, but it generates the question number ...
-5
votes
1answer
91 views

Print 2 strings [closed]

I have 2 arrays: String [] head = {"Name", "Date of birth", "PPS number"}; String [] personal= {value1, value2, value3}; I want this 2 arrays to be printed out in the following manner: head[0] tab ...
48
votes
7answers
64k views

Printing without newline (print 'a',) prints a space, how to remove?

I have this code: >>> for i in xrange(20): ... print 'a', ... a a a a a a a a a a a a a a a a a a a a I want to output 'a', without ' ' like this: aaaaaaaaaaaaaaaaaaaa Is it ...

1 2