0
votes
5answers
18 views
How to trim leftmost and rightmost whitespaces of a string using PHP?
What function can I use?
2
votes
6answers
51 views
Concat string in IsNullOrEmpty parameter
I was looking at a piece of code I wrote in C#:
if(string.IsNullOrEmpty(param1) && string.IsNullOrEmpty(param2) && string.IsNullOrEmpty(param3))
{
// do stuff
}
and decided …
0
votes
1answer
10 views
Help with JYTHON 2.0 CODE -STRING MANIPULATION and replace
As i have already asked this question
and i have later realized that tool
for which iam writing JYTHON CODES
supports presently on till 2.1 version
as the intepreter is of 2.1 so some of
…
0
votes
0answers
16 views
exact String check (WPF Multitouch)
hi, I'm trying to get you into the picture firstly, I'm trying to implement a gesture in WPF4 VS2010, it is like you move your finger until it crosses a TouchPoint that you already passed by with the …
0
votes
1answer
15 views
iphone: send back string value with navigationcontroller pop
Hi..
This may be very basic, but I just can`t figure out what to do, so thanks for any response...
I`m using a navigationcontroller and are currently on the second level in the stack. Here i set a …
1
vote
11answers
114 views
java - string declaration occupying multiple lines ?
i am using java . inside java program i am writing an sql query.
string query = "select * from tableA" ;
however sometimes the query is really large . in those cases i want to write the query in …
1
vote
3answers
39 views
How to do a string replace in a urlencoded string
I have a string like x = "http://query.yahooapis.com/v1/public/yql?q=select%20owner%2Curls%20from%20flickr.photos.info%20where%20photo_id%3D'%s'&format=json"
If I do x % 10 that fails as there …
3
votes
4answers
127 views
Passing C++ strings by value or by reference
I'm wondering whether the C++ string is considered small enough to be more efficient when passed by value than by reference.
2
votes
3answers
63 views
How do I un-escape a backslash-escaped string in python?
Suppose I have a string which is a backslash-escaped version of another string. Is there an easy way, in Python, to unescape the string? I could, for example, do:
>>> escaped_str = …
1
vote
4answers
72 views
Recommendation sought for basic string difference algorithm
Hello,
I'm looking for an algorithm that takes as arguments two strings, source and destination, and returns the steps required to transform the source string to the destination. Something that …
0
votes
4answers
113 views
Format double with no decimal point
Hi,
I've to convert double to 10 digits + 4 decimal.
so let say:
I have a double 999,56. I've to get 00000009995600 -> without comma!
What I have is:
string.format("{0:0000000000.0000}", value) …
3
votes
7answers
208 views
Find the nth occurrence of substring in a string
This seems like it should be pretty trivial, but I am new at Python and want to do it the most Pythonic way.
I want to find the n'th occurrence of a substring in a string.
There's got to be …
0
votes
1answer
27 views
PHP Cannot escape my string properly
I'm using mysql_real_escape_string to escape my content but I am receiving an error in a SQL INSERTION QUERY for having a single-quote unescaped. How can I resolve this?
$content = …
0
votes
4answers
82 views
String comparison equivalents
I believe these 2 lines are equivalent but after running into a strange issue I no longer believe this to be the case.
String mimeType = context.Request.ContentType;
(String.Compare("text/xml", …
7
votes
4answers
115 views
Questions about Java’s String pool
Consider this code:
String first = "abc";
String second = new String ("abc");
When using the new keyword, Java will create the abc String again right?
Will this be stored on the regular heap or …
