string

char pointer's segmentation fault

Hello, I'm trying to define a path at compile time by passing: -DDCROOTDEF='"/path/to/stuff"' on the compile line. I then try to get use this in the code like: char * ptr_path; strcpy(ptr_path, DCROOTDEF); strcat(ptr_path,"/MainCommons/CommonLib/fonts/Arial.ttf"); char *pftf=ptr_path; gdImageStringFT(pimg,brect,iclr,pftf,pts,ang,i...

non-technical benefits of having string-type immutable

Hi, I am wondering about the benefits of having the string-type immutable from the programmers point-of-view. Technical benefits (on the compiler/language side) can be summarized mostly that it is easier to do optimisations if the type is immutable. Read here for a related question. Also, in a mutable string type, either you have thre...

Is there any way to retrieve a appended int value to a String in javaScript?

I am currently working on a project that dynamically displays DB content into table. To edit the table contents i am want to use the dynamically created "string"+id value. Is there any way to retrieve the appended int value from the whole string in javaScript? Any suggestions would be appreciative... Thanks!!! ...

Javascript String Equality... What's the correct way?

What's the right way to check for equality between Strings in Javascript? ...

vba: storing a long string in a variable with special characters

i need to set a string equal to this in vba. how do i do it? <svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourc...

Convert HTML code to .NET string

Hi there, I have the following HTML code: <P>Notes:&nbsp;&nbsp; Mails: <BR> &nbsp; 1. <A href="mailto:[email protected]">[email protected]</A></P> and of course when I try to pass it to string it gives me error: string s = "<P>Notes:&nbsp;&nbsp; Mails: <BR> &nbsp; 1. <A href="mailto:[email protected]">[email protected]</A></P>"; Is ...

PHP: URL friendly strings

Possible Duplicate: How to handle diacritics (accents) when rewriting 'pretty URLs' I want to replace special characters, such as Å Ä Ö Ü é, with "normal" characters (those between a-z and 0-9). And spaces should certainly be replaced with dashes, but that's not really a problem. In other words, I want to turn this: en r...

python: keep char only if it is within this list

i have a list: a = ['a','b','c'.........'A','B','C'.........'Z'] and i have string: string1= 's#$%ERGdfhliisgdfjkskjdfW$JWLI3590823r' i want to keep ONLY those characters in string1 that exist in a what is the most effecient way to do this? perhaps instead of having a be a list, i should just make it a string? like this a='abcdefg...

Print a leading '+' for positive numbers in printf

I've a temperature conversion program as an assignment, which I've completed. The program has many printf statements in it which print the temperature. Now the negative temperatures are printed the way I want them but the positive temperatures are printed without a leading + sign. Now what is the best way to get printf print a leading ...

JQuery: removing char from a String / selecting

I would like to select only one class from severals with the condition that the selected class has any div-descendant with the id "#exampleId". I thought something like this could work, but it didn't: $(".myClass").has(div).attr("id","#exampleId"). The second problem: I have to get rid first of the hash "#". because the String (#exa...

Read content of 12000 files from another FTP server

What I would like to script: a PHP script to find a certain string in loads of files Is it possible to read contents of thousands of text files from another ftp server without actually downloading those files (ftp_get) ? If not, would downloading them ONCE -> if already exists = skip / filesize differs = redownload -> search certain st...

Does Javascript string.toLowerCase() follow Unicode standards in case-conversions?

Hi! I'm creating a browser-based form verification script that checks if the input doesn't have any uppercase characters according to Unicode Standards. My definition of an uppercase character is a character that has a lowercase mapping. If a certain character in the input string doesn't have a lowercase or uppercase mapping (like chine...

Copying to Clipboard in Java

I want to set the users clipboard to a string in a Java Console Application. Any ideas? ...

PHP Subtract First Character of String

Hello, I know this is simple, and I've done it before, but I've forgotten how to do it. How might I, in php, subtract the first letter of a string? For example: FOOBAR would become OOBAR I think its something like $string[-1]; Thanks, Christian Stewart ...

String concatenation

Why it is possible to do const string exclam = "!"; const string str = exclam + "Hello" + " world"; And not possible to do this : const string exclam = "!"; const string str = "Hello" + " world" + exclam; I know (although can't understand why) that it is not allowed to do : const string str = "Hello" + " world" + "!"; as it wil...

how to split <p><span>Hello</span></p> to <span>Hello</span> using javascript

how to split <p><span>Hello</span></p> to <span>Hello</span> using javascript var text = "<p><span>Hello</span></p>"; remember:I don't know what contain <p>, I don't know if <p> has any attribute or not I found the answer ! var patt=/^<p.*?>(.*)<\/p>$/i; var result=patt.exec(text); alert(result[1]); thank's ring0 & w3schools http...

Converting a string with a hexadecimal value to an actual hexadecimal value

I have a string like this: "00c4" And I need to convert it to a hex value like this: 0x00c4 How would I do it? ...

How can I use ImageFormatConverter.ConvertFromString to convert a string containing HTML response to an image?

This is what achieved, help please: in pageload { panelmain.Controls.Add(abc); panelmain.Controls.Add(grid1); string toexport; toexport = RenderControl(panelmain); ImageFormatConverter imgc = new ImageFormatConverter(); System.Drawing.Image convertedimage; convertedimage = (System.Drawing.Image) imgc.Conver...

Find and replce string

I have one string as string1= this is my name. In string 1 find "is" i.e. Find string= "is" replace string= "was" final op=this was my name. Explain with c language. ...

Provide Programmatic Access to All Data Available in String Form: toString()

Bloch said: Provide Programmatic Access to All Data Available in String Form. I am wondering if he means to override toString() which should involve 'all data available'? I think the 'in string form' means that the string is for human reading, so override toString() is enough for the advice. Am I correct? ...