A string is a sequence of zero or more characters. It is commonly used to represent text or a sequence of bytes.
0
votes
0answers
13 views
performance of string.tolowercase on a lower case string
I want to know the implications of the toLowerCase on a String. The string here can vary in length upto 50 chars and can be a lower case also.
In our case, We need to check for the string which in ...
0
votes
3answers
22 views
Dynamically extracting the last part of a URL
I have a URL https://xyz.com/abc/.../xyz/name_part. I would like to efficently split this into 2 separate parts a Namespace URI that is https://xyz.com/abc/.../xyz and to a Name part which is the ...
0
votes
0answers
7 views
selective selection to word in file google voice api python
I've had an idea of creating a TTS[ Text-To-Speech] program with python and I couldn't make dragonfly or pyspeech work for Python v3.3 so after a quick google search I found the google Voice ...
0
votes
3answers
54 views
My arraylist is only outputting the last value
I created a HashMap to store a text file with the columns of information. I compared the key to a specific name and stored the values of the HashMap into an ArrayList. When I try to println my ...
0
votes
1answer
32 views
dumb Q of the day: assigning a string into a character array
string word = "Hello Boys";
char x[100] = word; // wouldn't work
char x[] = word; //wouldn't work either
I rarely work with strings and chars and now it's coming back right at me.
1
vote
3answers
50 views
Adding two strings arithmetically
I'm trying to implement a function to add two overly large (let's say 1000 digit long) numbers stored in strings. I'm having problems with correct conversions so I can add numbers correctly.
So far, ...
-1
votes
0answers
15 views
How to reverse a string USING a MACRO that swaps the characters together with a stack in assembly language?
I need to use this:
SWAP MACRO A, B
XOR A, B
XOR B, A
XOR A, B
endm
I need to prompt the user to write a string
then i need to write a method or ...
1
vote
1answer
18 views
List of ints to list of strings in MATLAB
I have a list of integers
[0, 10, 20, 30, ...]
And I want to use them as a legend in a plot. My understanding is that I need to give the command
legend('0','10','20','30', ...)
So how do I get ...
0
votes
1answer
20 views
Flex - RegExp replace is not working using variable
Must be simple fix but I cannot see for the life of me what I'm doing wrong.
I've tested the reg expression in an online tester and it works,
so assuming it's Flex dependent problem.
Here's my code ...
-2
votes
1answer
40 views
why string swap not allowed in this case
I have a function
void foo(string *input) {
string temp = "";
input->swap(&temp);
}
But this seems not working... I guess the reason is temp is a temporal var
so will be de-allocated ...
0
votes
3answers
21 views
Awk string help finding information
Hi I have a line I am trying to parse. The line looks like this
Edward C. Anderson, Broker ~ 813.841.2773 ~ ed@action100realty.com
I am new to awk and have tried to do my research. I see that ...
0
votes
1answer
14 views
Why does changing text in Actionscript only preserve included letters?
I am working with Actionscript 3 in Flash, and I have a dynamic text field, instance called "textField" inside an instance of movie clip "mcpoo" and a keyframe with actionscript:
...
0
votes
0answers
14 views
Running a class withing a class
String ans = JOptionPane.showInputDialog(null, "S,T,R,K or P?");
if (ans == "S")
{
class Square
}
Basically, I'd like to run this exert of code under a main class Shapes, and then in the if ...
0
votes
3answers
40 views
Python Error ValueError: invalid literal for int() with base 10: 'stop'
Every time I try me code it works but when I type in 'stop' it gives me an error:
ValueError: invalid literal for int() with base 10: 'stop'
def guessingGame():
global randomNum
...
3
votes
1answer
83 views
Performance of sprintf vs String.Format
I was comparing the performance of sprintf usages and am a little troubled by what I saw. I tested the following 4 methods, passing an instance of ClassWithToString in to each (except for PrintInt, ...
0
votes
1answer
9 views
Tsql Pivot on string + concat
I'm having some difficulties with a Pivot query for my particular situation.
I have to Pivot a string column over an int column (so just 2 columns)
The third column will hold a concatenation of the ...
0
votes
2answers
19 views
String Template for errors
I dont know if I am expressing the proper terminology here, so please correct me and I will update the thread properly.
I have a lot of error options and I would like a Template so I dont have to ...
-3
votes
4answers
50 views
Java: Extract characters after a specific character [closed]
I have urls in strings like below
http://www.example.com/abc?page=6
http://www.example.com/abc?page=66
http://www.example.com/abc?page=666
I want to extract only the page numbers i.e only the ...
0
votes
2answers
24 views
Xcode - Replace content in '< >' of String
I search this question but not found nothing to helped me.
For example, I have this string:
NSString *text = @"Siguiendo la estela del <a class="colorbox" ...
1
vote
2answers
87 views
Identify your own string-object for large strings?
Maybe this sounds weird, but the idea is to define a class, say LargeString, which acts like a string, except it should not create a new reference by calling the '+=' operator.
So I could use this ...
0
votes
0answers
20 views
Which one performance better when I use jedis , set(byte[], byte[]) or set(String, String)?
On my laptop, set String directly is always proformace better than set byte[], even with Serialization mechanism when I test with Jedis. I am confused that if String should be serialized when call ...
1
vote
4answers
40 views
Separate chars of a file in matlab
I have strings of 32 chars in a file (multiple lines).
What I want to do is to make a new file and put them there by making columns of 4 chars each.
For example I have:
00000000000FDAD000DFD00ASD00
...
1
vote
5answers
42 views
Make random choice from string
Let's say I have a string like:
data = '''Random digits: (1|2|3), (4|5|6), (7|8|9).'''
How can I get output like:
Random digits: 1, 6, 7.
or
Random digits: 3, 4, 9.
So the idea is to choose ...
-2
votes
3answers
72 views
string #define returns randomly integer
As far as I know #define is just a string replacement and it's not a variable, so it doesn't have any memory address or something.
Suppose this code:
#include <stdio.h>
#define ONE "a"
...
-2
votes
1answer
47 views
Java string - split on space, replace multiple space by one [closed]
suppose i have a string
s ="[ 2323.2323 232.3232 0.2 0.3 3232]"
I want to split it into string array by space delimiter and i want to preserve the single space and ignore the multiple space. ...
0
votes
3answers
92 views
Returning an array from a C function
I'm trying to figure out how returning an array works out in C. This is the code. What I'm trying to do is save an array and then print it by using a function return. What am I doing wrong here?
...
1
vote
3answers
59 views
Java HashSet shows list in weird order, always starting with 3
I have array of Strings which actually in nothing but list of integers coming from file. I converted it to HashSet so as to remove duplicates as follows:
Set<String> intSet = new ...
-4
votes
1answer
51 views
writing code for checking if special string
Special String is a string made by 2 parts
Part 1: contains characters "a" only
Part 2: contains characters "b" only
The number of the characters in Part 2 is two times the number of the characters ...
0
votes
2answers
39 views
Insert ASCII code into string
I want to add a horizontal tab before a string in c# and insert into a word document.
How do i append ASCII code 09 = HT ( Horizontal Tab ) at the beginning of string for word to read. Thanks.
0
votes
3answers
47 views
Serial port fragmented data
I receive data from a serial port and I show those data in a multiline text box. The data have a starting header (>),an identifier ("T" or "I" or "N") and a closing header (<). So a complete ...
1
vote
3answers
46 views
Searching through mutliple values in a list Pyhton
Suppose I have a list:
items = ['matt', 'zen', 'a', 'b', 'c', 'cat', 'dog']
if elem in items
`if 'a' 'b' 'c' found then return 1
Whenever elem finds 'a', 'b', 'c' in the list and return a value. ...
0
votes
2answers
40 views
searching string, exclude certain substrings
I am searching a string 000295-0000108352@ap.ipaccess.com for 108352, this should return true. However if I search for a substring of this it should not return true. Eg if I searched for 08352, this ...
1
vote
2answers
32 views
Returning a string array containing string forms of integers, replacing multiples of certain numbers with strings of text [closed]
I need to have a function accept two arguments, int start, and int end. I need the two integers to give an integer series. For example, start = 1, end = 10. It would return 1,2,3,4,5,6,7,8,9. I need ...
0
votes
5answers
27 views
JS: Replace innerHTML of tags
My application dynamically gets HTML code from my website and saves it as a String.
Here's an example:
Lorem ipsum <a href="http://www.google.com">Click Here</a>
Lorem ipsum <a ...
0
votes
4answers
73 views
Parsing SQL Statements using java
I need to parse sql statements and get column names and table names. I tried with sample code. I got table names but I am stucked to get column names for each table.
0
votes
4answers
41 views
PHP remove symbols from string
Searching through the internet and this website as well, I've found several topics on the matter. Thing is, there are countless solutions if the inserted strings must contain only characters of the ...
2
votes
1answer
35 views
how string custom processing by “special characters” is called in programming?
In programming, strings like these
$stringA="[[f9.heart]]"; // facebook replaces it with heart image
$stringB="%%VARNAME%%"; // set var value into a template system
are defined to have a special ...
0
votes
1answer
22 views
parse memberOf attribute to get group in spring security3
I am using spring security 3.1.3 for authentication via LDAP, code is working fine.Now, I want to get group of authenticated user. I've developed my custom LdapAuthoritiesPopulator in my ...
0
votes
2answers
36 views
Converting a string to an expression in MATLAB
I'm writing a small MATLAB package and I'd like to ask for user input for a function. So if the user enters:
x.^2 + sin(x)
I want to use this user input to appear elsewhere in the code, but x would ...
0
votes
4answers
52 views
Strings and appending in Python
In Python a string is immutable. I find the function string.join() could add the value to a string but it seems the following doesn't work.
#coding: utf-8
if __name__ == "__main__":
str = "A fox ...
4
votes
3answers
60 views
is any of array items contained in a string
I have a keywords list and a blacklist.
I want to delete all keywords that contain any of blacklist item.
At the moment Im doing it this way:
my @keywords = ( 'some good keyword', 'some other good ...
0
votes
1answer
16 views
Receiving no output of emailmessage subject when passing object to a string function
VB.Net 2012
I have the following function
Public Function getTaskTitle(message As EmailMessage) As String
Return message.Subject.ToString
End Function
During a loop thru an message itemView, ...
0
votes
5answers
77 views
Replacing some substring occurence inside a string
GIve me some advices concerning replacing substrings in a string.
At the input I have the initial string (it is a C# code always) and the NewName (MyGood) of the class.
the initial string:
using ...
0
votes
2answers
43 views
Memory allocation/management for strings and their subsequent garbage collection
String a = "test";
String b = "whatever";
String c= "test";
System.out.println(a == c); //true
I assume that this prints true because strings are immutable and therefore these strings are ...
18
votes
9answers
471 views
behavior of String literals are confusing
The behavior of String literals is very confusing in the code below.
I can understand line 1, line 2, and line 3 are true, but why is line 4 false?
When I print the hashcode of both are the same
...
1
vote
3answers
38 views
Saving x,y coordinates in python
I am generating hundreds of lines (x,y coordinates) output in a for loop. What would be the easy way to save them into a txt file at the end of the process?
Thanks
Example of output:
…
100 23
112 ...
0
votes
0answers
12 views
Radio group string data saving in the SQLite database
I have an list view with some set of questions and i have an radio group for each question. By the selection of radio buttons for the questions it wants to move to certain Activities and finally saves ...
4
votes
1answer
27 views
JavaFX TableView Column Width\Contents auto-truncating
I'm trying to "smartly" abbreviate/truncate the String contents of a column nested in a TableView. I have tried using UNCONSTRAINED_RESIZE_POLICY but really prefer CONSTRAINED_RESIZE_POLICY since it ...
3
votes
4answers
60 views
String in list to float
I have a list called 'ft_List that looks like...
[['Fall2001', '22.00', '2000', '01', '01', '120.0', '', 'N'],
[CgeCam2002', '20.00', '2000', '09', '04', '0.0', '1', ''],
['Fall2004', '18.50', ...
1
vote
1answer
34 views
how to line up text in list box python
i have three lists populating a list box. what i would like to know is there a way to format the phrases so that the names are all in line then the dates and then the info. i have tried to use + to ...






