New answers tagged string
2
the operator for equal comparation is == your code should be:
if(DeliveryDB.GMSetDoubleExp(dblexp_on == (1)))
= is the assignation operator
0
== also checks whether two different objects refer to same memory allocation in heap or stack while .equals checks only whether they have same value or not.example-
String obj=new String (hello);
String obj1="hello";
1 if(obj1.equals(obj));
2 if(obj==obj1) ;
.equals will print 'true' while == will print 'false' because both are in different ...
0
Your loop shuold look more like:
for (i=1; i<=lines; i++) {
for (n=0; n<i; n++) {
output1 += in;
}
output += "\n";
}
assuming you can't use StringBuilder (which, per other posts, is a better option).
0
why don't you try this
public class StringFirstTry {
public static void main(String[] args) {
String name;
name = "luke";
System.out.println("Hello, " + name + "pleased to meet you");
}
}
5
If you insist on using String as your class name it should be:
public class String {
public static void main(java.lang.String[] args) {
java.lang.String name;
name = "luke";
System.out.println("Hello, " + name + "pleased to meet you");
}
}
I don't think it's particularly wise to try and re-use the names of classes defined ...
2
As your class hides the java.lang.String name, you need to write
public static void main(java.lang.String[] args) {
Better call your class StringTest or something else to avoid this confusion.
public class StringTest {
public static void main(String[] args) {
String name = "luke";
System.out.println("Hello, " + name + "pleased to ...
3
You were careful to fully-qualify your reference to java.lang.String for the name variable, but not for the args parameter to main.
Use
public static void main(java.lang.String[] args) {
Of course, this all resulted because you named your class String, the same name as a built-in class in Java. Perhaps you could name it StringTest instead? That would ...
3
Since your class is named String, it is being inferred by the compiler as the argument type of your main method.
Try fully qualifying the argument type instead:
public static void main(java.lang.String[] args) {
...
Or better yet, rename your class to use and non-java.lang class name.
1
>>> icon = '\u25B2'
>>> print(icon)
▲
Also refer to: Python unicode character codes?
0
If using a StringBuilder is too advanced you can get the same effect simply using a string:
String output1 = "";
for (i=1; i<=lines; i++) {
for (n=1; n<=lines; n++) {
output1 = output1.concat(n +"\n");
// note the below commented out code should also work:
//output1 = output1 + n + "\n";
}
}
This is much less ...
3
You can use string escape sequences, as documented in the “string and bytes literals” section of the language reference. For Python 3 this would work simply like this:
>>> icon = '\u25b2'
>>> print(icon)
▲
In Python 2 this only works within unicode strings. Unicode strings have a u prefix before the quotation mark:
>>> icon = ...
2
Use \u escaping in a unicode string literal:
>>> print u"\u25B2".encode("utf-8")
▲
Alternatively, if you want to use HTML entities, you can use this answer: http://stackoverflow.com/a/2087433/71522
0
I believe that the standard version of KMP is more efficient since it uses less memory then the DFA version. The DFA array can become quite large if you have a large alphabet and a large pattern.
An implementation of both versions can be found in the flowing links with quite good documentation as to how they work in the related course pages (Note that in ...
-1
As other mentioned,makes no different. The same count of cmp instructions will be generated in both ifs conditions(it is not considering any optmization by compiler)
EDIT:
Consider this C functions:
int is_letter2(int c)
{
if(c == 'A') return 1;
else if(c == 'B') return 1;
else if(c == 'C') return 1;
else if(c == 'D') return 1;
else if(c == 'E') ...
0
Without entering in the scope of compiler optimization, assembly generation and better algorithms, what other posters missed is that the single if with multiple test cases and multiple ORs (||) will short-circuit after the first match. Effectively, the first and the second snippets of code will generate equivalent ASM in terms of speed.
0
As a high level approach, you could try this. Create two StringBuilder instances. Loop up until the desired lines is hit. For each iteration, append an X into the first StringBuilder and then append to entire contents of that StringBuilder into the other one (via toString) with a \n for the newline. After that loop finishes, append in 2 empty lines for ...
0
Accumulating in a string variable is called a StringBuilder. It allows you to quickly append things into the StringBuilder from which you can call toString() to transform it back to a String.
StringBuilder sb = new StringBuilder();
for (i=1; i<=lines; i++) {
for (n=1; n<=lines; n++) {
sb.append(n +"\n");
}
}
if you can not use a ...
4
I'd recommend doing the following:
#include <ctype.h>
...
return isupper(c)
Instead of manually checking all of them. The standard C library functions are reasonably fast so performance should be acceptable.
0
If you have a larger number of conditions, a switch block would be better:
switch(c) {
case 'A':
case 'B':
// (...)
case 'Z': return 1;
default: return 0;
}
3
The rule of thumb is that you shouldn't worry about these small performance issues if you are not sure it is really worth it.
In any case, if you want to check for any A-Z letter then this (mind that this makes an assumption about the encoding of character used which shouldn't have any external symbol between A and Z or this won't work)
if (c >= 'A' ...
-2
that is fine, because the first yes answer will short circuit the logic, and it will not have to evaluate the rest of the instructions.
for readability you could write:
switch(c)
{
case 'A':
case 'B':
case 'C':
return 1;
default:
return 0;
}
if you are trying to test for capital letters there are simpler ways:
if(c >= 'A' ...
3
An optimizing compiler will handle both forms likewise.
Leave such micro-optimizations to the compiler. What also matters is the readability of your source code.
(Of course you need to enable optimizations, for GCC -e.g. the recent GCC 4.8- you'll compile with gcc -O2).
And you really need to benchmark to be sure (because tons of other factors also ...
3
Take a look at this page and it's BigNumber class.
The first thing to note is that we can't use any of the primitive types in C#: they just don't have enough precision (the double type, for example, only has 15 significant digits, and we want to calculate, say, 10000). We need a large precision number library, but there's nothing like that in the .NET ...
1
This is a recursive approach in Python. At each step, randomly select from among the remaining partitions of the string, then randomly select a substring of length k from the chosen partition. Replace this partition with the split of the partition on the substring chosen. Filter out partitions of length smaller than k, and repeat. The list of substrings ...
2
Not sure why you want a regex here...
your_string.rpartition('\\')[-1]
0
I've got it like you want remove part of string before some point-word ("somefile" in your example)
>> a = 'F:\\Somefolder [2011 - 2012]\somefile'
>> point = 'somefile'
>> print a[a.index(point):]
somefile
2
If you want the part to the right of some character, you don't need a regular expression:
f = r"F:\Somefolder [2011 - 2012]\somefile"
print f.rsplit("\\", 1)[-1]
# somefile
0
How about this little guy?
[^\\]+$
... in action ...
myStr = "F:\Somefolder [2011 - 2012]\somefile"
result = re.match( r'[^\\]+$', myStr, re.M|re.I)
if result:
print result.group(0)
else:
print "No match!!"
Adapted from: http://www.tutorialspoint.com/python/python_reg_expressions.htm
Python RegEx Tester: ...
2
The javadocs here do not list a getBytes method but a getValue method. Either way, you cannot cast a byte[] to a String.
You can either pass the bytes to the String constructor
new String(serverString.getBytes())
or
just use toString as serverString.toString()
0
Others have pointed out your error. Besides, How about doing it this way ?
string str = "123124125";
int i = str.Length / 3;
int[] number = new int[i];
while(--i>=0) number[i] = int.Parse(str.Substring(i*3,3));
1
I would use ciphertext[count] -'0' to get the int value of the character.
You also can use atoi function on the substrings you want to convert to integer.
0
EDIT. I had suggested 9 - ('9' - char) but as gkovacs90 has suggested in his answer, char - '0' is the better way to write it.
The reason is that ciphertext[count] is a character so casting it to an int gives you the ascii code for that character not an integer. You could do something like ciphertext[count]) -'0'
For example, lets say that ...
0
See your screen if the HTML tag the charset parameter is ISO-8859-1 if you do not have to add and also look at your bank when it was created as it is ISO-8859-1.
0
You cannot handle multibyte characters correctly using naïve PHP string handling functions. You need to handle them using encoding-aware functions, likely from the mb_ family of functions. Read this to get all the details (it's long): What Every Programmer Absolutely, Positively Needs To Know About Encodings And Character Sets To Work With Text
0
public class TestStringCount {
public static void main(String[] args) {
int count=0;
boolean word= false;
String str = "how ma ny wo rds are th ere in th is sente nce";
char[] ch = str.toCharArray();
for(int i =0;i<ch.length;i++){
if(!(ch[i]==' ')){
for(int j=i;j<ch.length;j++,i++){
if(!(ch[j]==' ...
0
Ok here is the solution
strcat(string, &c);
change this to
strncat(string, &c,1);
now the answer to the question why ?
well first of call the below statement
c = getche();
will scan a value for us and will place in variable called c
now lets consider the variable is placed in an arbitrary memory location x
c
...
0
char* createString(void){
int c;
char *string=NULL;
int x=0;
while(1){
c = getche();
string = realloc(string, sizeof(char)*(x+1));
if('\n' != c)//input <ctrl+j> or use getchar()
string[x++] = (char)c;
else {
string[x] = '\0';
break;
}
}
return string;
...
0
1) you should initialize
int x=1;
2) you should update this line:
realloc(string, sizeof(char)*x);
to
string = realloc(string, sizeof(char)*x);
3) Yoou do not need for strcat to concatenate. So instead of using
strcat(string, &c);
use the following lines
string[x-2] = c;
string[x-1] = '\0';
0
There are a couple of obvious issues here
realloc returns a pointer to a new memory block. This may be the same pointer that you passed in or it may be a pointer to a completely different address. If you don't use the return value, sooner or later you'll find that string points to freed memory
strcat operates on two strings. You have a string and a ...
1
It is because you are assigning a double to an int and you get a possible loss of precision error. Just explicitly cast the result int and you should be fine (assuming you are ok with the decimals being truncated):
outputGradeSingle = (int) (studentMark / 10);
Note: you state
mark=79 then outputGrade string = "9"
if mark is 79, outputGrade will be ...
0
You can use a string splitter function like the one described here http://www.sqlservercentral.com/articles/Tally+Table/72993/
scroll down to the 'CREATE FUNCTION' script and run it to create your function, then you can split the comma separate string for use in your 'where in' clause
select * from Table_B
where C_Id in (select item from ...
2
the very fetchAll() manual page contains the code that lets you get 1-dimensional array which can be easily imploded
$result = $sth->fetchAll(PDO::FETCH_COLUMN, 0);
you could also use Mysql's group_concat() function to get the string already from SQL.
But it is critical to know the destination of the data.
0
I use below methods - they handle all whitespace chars not only spaces, trim both leading and trailing whitespaces, remove extra whitespaces, and all whitespaces are replaced to space char (so we have uniform space separator). And these methods are fast.
public static String CompactWhitespaces( String s )
{
StringBuilder sb = new StringBuilder( s );
...
0
Determine what coding is used in your file and use the corresponding encoding instead of Encoding.ASCII.GetString(...). Possible values could be Encoding.UTF8.GetString(...) or Encoding.Default.GetString(...) to use your system encoding. See documentation of the Encoding class for other possibilities.
2
Don't use ASCII for encoding. First try using Default after setting your locale; then try asking directly someone what encoding is most used for Persia, and use this one.
0
if (str.endsWith("x")) {
return str.substring(0, str.length() - 1);
}
return str;
For example, the word is "admirer"; after I run the method, I get "admie." I want it to return the word admire.
In case you're trying to stem English words
Stemming is the process for reducing inflected (or sometimes derived) words to their stem, base or root ...
-1
Found this, God knows where, a long time ago to accomplish this very task. I hope you find it helpful:
/**
* Formats a line (passed as a fields array) as CSV and returns the CSV as a string.
* Adapted from http://us3.php.net/manual/en/function.fputcsv.php#87120
*/
function arrayToCsv( array &$fields, $delimiter = ';', $enclosure = '"', ...
1
strcpy(s, "foo");
Copies foo to memory location pointed to by s
t = s;
Now, t and s both point to same location
Hence, same output
Now, you copy bar to s. Since both t and s point to same location. Hence, same output again.
Upto this line everything is same
s = "bar"
You create a string constant bar. And assign its address to s. Its a pointer ...
8
This is undefined behaviour, which means anything can happen:
char *s, *t;
strcpy(s, "foo");
as strcpy() is writing to a random location in memory because s is an uninitialised pointer.
(after edit that corrected undefined behaviour)
Question 1 - Why does value of t changes in this case? (I copied "bar" to s why did t change).
This is a pointer ...
Top 50 recent answers are included




