A string is a sequence of zero or more characters. It is commonly used to represent text or a sequence of bytes.
1
vote
5answers
33 views
How to pass a double in .getText()
I'm trying to create an app that converts celsius to Farhenheit. I want to pass float in .getText() but I'm unable to do so, It is giving me error which say cannot invoke .getText() on the primitive ...
-5
votes
1answer
48 views
How can I replace all chars in string except another string [duplicate]
Given a string and a non-empty word string, return a version of the original String where all chars have been replaced by pluses ("+"), except for appearances of the word string which are preserved ...
0
votes
1answer
22 views
how to use display the value of an element of a list<string> in MVVM?
Normally, when I binding de items source of a control in the view, the property in the view model use to be a list of an object. This Object has many properties and I can choose one of the to set the ...
0
votes
0answers
14 views
Interoperability managed <-> unmanaged , retun CString value of a function issue
I have written an wrapper for an custom nativ C++ DLL .
The DLL is used in a .NET app. I have used P/Invoke to call functions from DLL.
In my development I am limited at using visual studio 2003 , ...
0
votes
1answer
5 views
string too long with MsiGetProperty with Installshield Installscript
I am using MsiGetProperty to get string parameter value from the installer.
And after that I am calling a managed dll and I pass the that value:
nvBufferSize = MAX_STRING;
MsiGetProperty (hMSI, ...
5
votes
2answers
61 views
Do strings used in a System.out.println also create new immutable objects?
So I'm studying for the SCJP from the Kathy Sierra book.
In the chapter for strings, this is a question:
String s1 = "spring ";
String s2 = s1 + "summer ";
s1.concat( "fall ");
s2.concat(s1);
s1 += ...
0
votes
5answers
59 views
How can I transform a List of List (multidimensional List) to an Array of Array(multidimensional Array)?
I have written this code, but at run time I have this error:
[Ljava.lang.Object; cannot be cast to [[Ljava.lang.String;
please help me, thanks!!!
public java.util.List<String> ...
1
vote
1answer
27 views
Inserting another character in place of spaces in Python
Lets say I have a String: The Quick Brown Fox. I want to insert a character in place of the spaces. So that it becomes:
The-Quick-Brown-Fox
I could do that manually by iterating throughout the ...
0
votes
3answers
32 views
Custom operators error when passing parameters c++
Im building custom operators and im having problems when passing parameters to them.
For example
class test{
public:
test operator[](vector <string> s){
test a;
...
1
vote
1answer
63 views
assignment of c_str() to a string
I have a problem which i cannot fix on my own.
string filenameRaw;
filenameRaw= argv[1];
function(filenameRaw.c_str(),...);
function(const char* rawDataFile,const char* targetfieldFile,const char* ...
0
votes
5answers
45 views
Java-Convert String to int when using BufferedReader
How do you convert a String to int when using BufferedReader?
as far as i remember,its something like below:
System.out.println("input a number");
int n=Integer.parseInt(br.readLine(System.in));
...
2
votes
0answers
10 views
At what level is the order of the alphabet(s) stored in software/operating systems?
Ordering something alphabetically isn't something we spend too much time worrying about. We learned the alphabet at a young age and now we know that it (Latin) starts with A, then B, then C etc. ...
-1
votes
3answers
71 views
How to replace all chars in the string except another string in this string
For example I have two strings
String a="aaabbbaaa";
String b="bbb";
I need to replace all chars in string a except String b
I need next result (for example we replace all "a" chars with "+"):
...
0
votes
3answers
35 views
C# Convert double to string cut some last numbers
I have latitude and longitude in double and I want to convert them to string format with dot. So I am using:
start_lon.ToString(CultureInfo.InvariantCulture)
and I get right format (I get dot) but ...
-3
votes
1answer
24 views
input string to function from another file [closed]
i dont think my title is right becuase i have no way to explain it when writing. I will try my best to show what i want to do.
i Have a function called get_footer which is like this:
function ...
0
votes
6answers
58 views
Java-Buffered Reader, How do you read a line using br.readLine(System.in) and convert it to char?
I have to do a cryptography program in Java which takes a number and a string(as an instance variable) from the user and adds that number to the ASCII of each letter in the string to create a new ...
2
votes
2answers
74 views
Why does removing using namespace std cause errors in my project?
I have a problem with including header files in C++. As far as I know, it's not a good design to put using namespace std inside header but I got some error when I try to remove it. Here is my code in ...
-1
votes
2answers
44 views
Java -What is an instance variable? [closed]
I have to do a program in which an instance variable which is a String should be inputted ( is that a word?) by the user. What is an instance variable?How do I create one? and what does it do? Keep it ...
3
votes
2answers
31 views
bash read a character from every string in file
I have not so easy task and I am in need of useful advice.
I have a file, containing list of hosts:
host1.example.domain.com
host2.example.domain.com
host3.example.domain.com
and a variable in a ...
-2
votes
2answers
29 views
How I can fill a treeView with a List<string>? [closed]
hi i have a question to treeview.
I have a List liste and the treeview with the name treeLic. Now I want to fill this treeview with this list. Can I do this and how?
XmlReader xr = ...
1
vote
1answer
24 views
Java-Function to print the variable with a particular ASCII code
I have to write a Java program for cryptography which takes a number from the user and adds( or subtracts the number if it is negative) from the ASCII code of the character. For example if the number ...
1
vote
6answers
58 views
Move values around in the code
I want to take a value from let's say a textbox and then move it let's say a Click event to somewhere else in the code. So this is what I did:
First I made a private string like this:
private string ...
1
vote
3answers
35 views
I there a python function to reset the script after it's run?
So when i run this in my IDE, the terminal pops up and I input whatever, it oututs the way it's intended, but then the terminal closes. Is there a function that can simply reset the function in the ...
2
votes
2answers
65 views
Perl: How to replace a variable by its value
Suppose, if a table has a column called test and inside test I have written a row as "Dear $name, Hello" where $name is a variable. I need to select this row for which I'm doing
my $test = ...
0
votes
1answer
40 views
string pop_back function error
I am having a problem with modifying a string. I appreciate your assistance; thank you!
struct Drawings::menues
{
std::vector<std::string> variable;
} Menue[numMenues];
...
7
votes
1answer
122 views
Why does Python have a format function as well as a format method
The format function in builtins seems to be like a subset of the .format method used specifically for the case of a formatting a single object.
eg.
>>> format(13, 'x')
'd'
is apparently ...
0
votes
1answer
49 views
convert LPTSTR to string [duplicate]
I am getting text from a Window and it returns in LPTSTR. I have to turn it into string or else I have to rewrite a lot of my code. Also What is a LPTSTR nad how is it different from a string?
-3
votes
0answers
35 views
Getline Not Working With Spaces
when i try to read a full name with cin.getline() the string is cuted after the first space if i write Ray William it just takes " William" withi the space, any idea?
string var;
cout ...
2
votes
2answers
47 views
Function returns tuple instead of string
I have a function in python similar to the following:
def checkargs(*args):
if len(args) == 1:
x = args
y = something
elif len(args) == 2:
x, y = args
return x, y
...
2
votes
3answers
52 views
Array of integers from file
I am trying to grab large numbers from a file, store them as an array, and add them up.
nums = Array.new
x, total=0, 0
file = File.open("inputfile.txt", 'r')
while !file.eof?
nums[x] = ...
-2
votes
1answer
63 views
How to make what is in a class public?
I have created my first class, which contributes to the code I've written for a GUI. However after any action performed buttons, the strings do not exist and are always underlined red, what do you ...
-2
votes
0answers
29 views
How do I split a string after a x amount of a certain pattern using php? [closed]
I have a php string that's a long paragraph with several html page breaks in it.
I only need the part of the string that's after the 10th br.
How do i trim off everything before the 10th br?
0
votes
1answer
11 views
Pulling object properties out of arrays and converting to string
I am currently working on a chat app and am stuck on getting properties out of an array of objects. I first sent an ajax request with json as the datatype. When I check my (data) parameter in my ...
1
vote
2answers
173 views
Query from a string in C# [closed]
I have the following string :
Microsoft (R) Test Execution Command Line Tool Version 11.0.50727.1 Copyright (c) Microsoft Corporation. All rights reserved.
Loading x.dll... Starting execution...
...
-2
votes
2answers
29 views
remove substring starting from one character upto another character
How do I remove a part of string starting from '+' and ending at '@' using PHP.
Actually I need some code to replace all of these
bob+fake1@gmail.com
bob+anything@gmail.com
bob+something@gmail.com
...
0
votes
4answers
64 views
Turning a string into multiple arrays?
I'm a student who is learning java (just started this year. I just graduated so I can't ask my high school teacher for help, either), and I need some help on how to turn a string into multiple ...
2
votes
1answer
53 views
Scala StringLike split method creates extra double quotes for leading spaces
I tried a simple split for a csv styled string, that contains spaces after commas like this:
scala> """"First", "SecondAfterSpace"""".split(",")
res0: Array[String] = Array("First", " ...
2
votes
1answer
24 views
IO.readlines to multidimensional array
The goal of my program is to read in a file that has a grid of numbers delimited by white space. To process this in my program I need it to be a multidimensional array. I attempted to do this by:
...
13
votes
4answers
712 views
Can someone break this lambda expression down for me?
I'm looking at the solution from Token Replacement and Identification:
string result = Regex.Replace(
text,
@"\[%RC:(\d+)%\]",
match => dict[int.Parse(match.Groups[1].Value)]);
And ...
3
votes
5answers
29 views
Lua - gmatch scientific notation string to number
I am trying to convert a string of scientific notation numbers into actual numbers.
My test string is formatted like so:
myString = 1.000000000000000E+00, 2.000000000000000E+02, ...
1
vote
3answers
47 views
Java: replaceFirst does not work, but replace works on the exact same input?
I am writing a program where a portion of it needs to replace part of the string without deleting duplicates so I am using replaceFirst() which is not working properly.
INPUT:
lock: "O_2_^-^"
str: ...
0
votes
1answer
24 views
Trying to convert an entire structure to a string in ASP.NET
I'm using a structure as follows:
Structure USERREC
Public UserRecID As Integer
Public CompanyRecID As Integer
Public Username As String
Public LoggedInTime As DateTime
Public ...
0
votes
5answers
73 views
How to tell if an unknown number is in a String?
I have an if statement which checks if a variable is equal to some string. But, I want to check if there is an number in the string, too. Something like this:
if(thestring.equals("I, am awesome. And ...
1
vote
5answers
34 views
Preg_match and substr together
I have a string that I need to test to see if the characters after the [0] character (the very first) are numbers or not.
So example :
C is [0]
I then need to check if the remaining characters are ...
2
votes
2answers
32 views
Longest 200 byte string - database validation max_length
So, working to a specification which dictates a byte length for a given variable (200 bytes) provided by end users/apps.
Using a python string, what is the maximum character length of a string, which ...
-8
votes
1answer
55 views
String Instead of Literal [closed]
I'm curious. For decimal format, is it possible to use a string instead of a literal value to represent the format description?
For example:
String format = “##.#”; DecimalFormat(format);
I ...
0
votes
2answers
16 views
Converting string of XML with <?xml version=“1.0”?> in it to XML
I am having issues with converting string to xml.string is in this format
String s = "<?xml ...
1
vote
2answers
21 views
ANSI C: Anonymous pointer in struct to array of strings - problems?
I must be missing something obvious...
I'd like to have an empty pointer to array of strings in my struct :
typedef struct SCR_SETTEXT_DESC_S
{
uint_8 Value; //Current value - copy made ...
0
votes
6answers
57 views
Find whether a string matches another string
I'd like to parse a string in order to see if it matches the entire string or a substring.
I tried this:
String [] array = {"Example","hi","EXAMPLE","example","eXamPLe"};
String word;
...
if ( ...
-1
votes
3answers
49 views
Ruby - how to pull out that is betweet two “points”?
I have a text like this:
...
Sentence one. hsjdhsd jghdsjghjdskhgjksdh kjghdsjkg
sdgsdg
dgds
hfdhdf
h
fdh
dfh Sentence two. gdjshagjhsdga sdgjhsdkjgh adskjghdsa
gs a
gfdgfdhfdhh
...
And I would ...


