active questions tagged string - Stack Overflow most recent 30 from stackoverflow.com 2009-12-14T20:31:59Z http://stackoverflow.com/feeds/tag/string http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1903252/extract-integer-part-in-string 0 Extract Integer Part in String vigilant 2009-12-14T20:23:21Z 2009-12-14T20:27:08Z <p>What is the best way to extract the integer part of a string like</p> <pre><code>Hello123 </code></pre> <p>How do you get the 123 part. You can sort of hack it using Java's Scanner, is there a better way?</p> http://stackoverflow.com/questions/1898656/remove-whitespace-in-python-using-string-whitespace 0 Remove whitespace in Python using string.whitespace Alex 2009-12-14T02:30:34Z 2009-12-14T20:26:51Z <p>Python's string.whitespace is great:</p> <pre><code>&gt;&gt;&gt; string.whitespace '\t\n\x0b\x0c\r ' </code></pre> <p>How do I use this with a string without resorting to manually typing in '\t|\n|... etc for regex? </p> <p>For example, it should be able to turn: "Please \n don't \t hurt \x0b me."</p> <p>into</p> <p>"Please don't hurt me."</p> <p>I'd probably want to keep the single spaces, but it'd be easy enough to just go string.whitespace[:-1] I suppose.</p> http://stackoverflow.com/questions/1897261/c-boost-split-string 0 C++ Boost: Split String Shaun 2009-12-13T18:27:53Z 2009-12-14T18:40:26Z <p>How can I split a string with Boost with a regex AND have the delimiter included in the result list?</p> <p>for example, if I have the string "1d2" and my regex is "[a-z]" I want the results in a vector with (1, d, 2)</p> <p>I have:</p> <pre><code>std::string expression = "1d2"; boost::regex re("[a-z]"); boost::sregex_token_iterator i (expression.begin (), expression.end (), re); boost::sregex_token_iterator j; std::vector &lt;std::string&gt; splitResults; std::copy (i, j, std::back_inserter (splitResults)); </code></pre> <p>Thanks</p> http://stackoverflow.com/questions/1899999/ruby-1-9-how-do-i-get-a-byte-index-based-slice-of-a-string 0 ruby 1.9: how do I get a byte-index-based slice of a String? kch 2009-12-14T09:59:53Z 2009-12-14T17:47:17Z <p>I'm working with UTF-8 strings. I need to get a slice using byte-based indexes, not char-based.</p> <p>I found references on the web to <code>String#subseq</code>, which is supposed to be like <code>String#[]</code>, but for bytes. Alas, it seems not to have made it to 1.9.1.</p> <p>Now, why would I want to do that? There's a chance I'll end up with an invalid string should I slice in the middle of a multi-byte char. This sounds like a terrible idea.</p> <p>Well, I'm working with <code>StringScanner</code>, and it turns out its internal pointers are byte-based. I accept other options here.</p> <p>Here's what I'm working with right now, but it's rather verbose:</p> <pre><code>s.dup.force_encoding("ASCII-8BIT")[ix...pos].force_encoding("UTF-8") </code></pre> <p>Both <code>ix</code> and <code>pos</code> come from <code>StringScanner</code>, so are byte-based.</p> http://stackoverflow.com/questions/1902217/c-decimal-formatting-query 2 C# Decimal Formatting Query Rezler 2009-12-14T17:16:31Z 2009-12-14T17:35:02Z <p>I am trying to format a decimal so that it will get displayed as so:</p> <p>14.5 should get displayed as "14.50" 14.50 should get displayed as "14.50" 14.05 should get displayed as "14.05" 14.00 should get displayed as "14"</p> <p>Is the possible with a single String Format, i.e. not using conditional formatting?</p> <p>I've tried "0.##" (doesn't satisfy the first example) and "0.00" (doesn't satisfy the last example).</p> <p>Thanks.</p> http://stackoverflow.com/questions/1902108/prefix-search-through-list-dictionary-using-net-stringdictionary 1 Prefix search through list/dictionary using .NET StringDictionary? Matthijs Wessels 2009-12-14T16:58:01Z 2009-12-14T17:03:56Z <p>I was wondering if .NET offers any standard functionality for doing a prefix search through a list or a dictionary object. I came across the <code>StringDictionary</code>, but couldn't figure out if it can do that for me.</p> <p>And if it can do a prefix search, can it also do substring search or let me search using something like a regular expression?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1901973/string-problem-in-php 0 String problem in PHP jun0rej 2009-12-14T16:36:45Z 2009-12-14T16:51:42Z <p>How do I take off a certain character in a string and put them all together in an array like:</p> <pre><code>"{2} in better that {1} when it comes to blah blah blah" </code></pre> <p>and the output would be:</p> <pre><code>array(0 =&gt; "2", 1 =&gt; "1"); </code></pre> <p>I have used regular expression but it seems like it doesn't loop throughout the string or maybe I'm missing something?</p> <p>Thanks</p> http://stackoverflow.com/questions/1887539/exact-string-check-wpf-multitouch 0 exact String check (WPF Multitouch) Mrme 2009-12-11T11:43:54Z 2009-12-14T16:15:17Z <p>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 SAME finger , so my thought is to make a list and check for every new TouchPoint if it exists , if yes then you have done your gesture , if not then add the TouchPoint to the collection to be compared with the following TouchPoints. for some reason this doesn't work well so I moved to another approach , replacing TouchPoints with X , Y for the TouchPoint and convert them into Strings and try to use Contains method against them , using TouchMove and TouchUp events my code looks like :</p> <pre><code> private void g1_TouchMove(object sender, TouchEventArgs e) { if(touchX.Contains(""+e.GetTouchPoint(g1).Position.X) &amp;&amp; touchY.Contains(""+e.GetTouchPoint(g1).Position.Y)) { // Clearing the lists , changing the canvas background color to know that the gesture is done touchX.Clear(); touchY.Clear(); g1.Background = Brushes.AliceBlue; } else { //adding new X, Y values to their respective lists touchX.Add(""+e.GetTouchPoint(g1).Position.X); touchY.Add( ""+e.GetTouchPoint(g1).Position.Y); } } private void g1_TouchUp(object sender, TouchEventArgs e) { //clearing the lists after the touch is up (finger removed) touchX.Clear(); touchY.Clear(); //getting the canvas it's original background color g1.Background = Brushes.Orange; } </code></pre> <p>So , when testing it it doesn't work , even if I move my touch in a straight line it changes the background. any Ideas ?</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1901723/does-the-string-pool-take-local-variables 0 Does the String pool take local variables? dmindreader 2009-12-14T15:55:15Z 2009-12-14T16:03:16Z <p>I believed the String pool abandoned local Strings when their methods completed</p> <p>Yet:</p> <pre><code>public class TestPool implements Runnable{ /** * @param args the command line arguments */ public void run() { String str= "hello"; synchronized(str){ try { System.out.print(Thread.currentThread().getName()); Thread.sleep(500); System.out.print(Thread.currentThread().getName()); } catch(InterruptedException e){ } } } public static void main(String []args){ new Thread(new TestPool(),"A").start(); new Thread(new TestPool(),"B").start(); } } </code></pre> <p>According to the whizlabs' guide, this code is correcly synchronizing its threads based on a local String. The output will always be AABB or BBAA. Why? Why does the str String outlive its local declaration? </p> http://stackoverflow.com/questions/1900756/how-do-you-convert-from-a-nsacstring-to-a-lpcwstr 2 How do you convert from a nsACString to a LPCWSTR? MercerKernel 2009-12-14T12:53:06Z 2009-12-14T15:29:25Z <p>I'm making a firefox extension (nsACString is from mozilla) but LoadLibrary expects a LPCWSTR. I googled a few options but nothing worked. Sort of out of my depth with strings so any references would also be appreciated.</p> http://stackoverflow.com/questions/1901322/valgrind-report-memory-leak-when-assign-a-value-to-a-string 1 valgrind report memory leak when assign a value to a string enzo 2009-12-14T14:48:55Z 2009-12-14T15:20:51Z <p>Valgrind report memory leak when assign a value to a string </p> <p>I used this simple code to test an memory leak reported by valgrind.</p> <pre><code>/****************************************** * FILE: t3.c * Compiled using : g++ -g t3.c -o t3 * * $ g++ -v * Reading specs from /usr/lib/gcc/i686-pc-linux-gnu/3.4.6/specs * Configured with: ./configure --prefix=/usr --infodir=/share/info --mandir=/share/man * --enable-languages=c,c++ --with-system-zlib --program-suffix=-3.4 --enable-threads=posix * Thread model: posix * gcc version 3.4.6 ******************************************/ #include &lt;iostream&gt; #include &lt;string&gt; using namespace std; /************************************************************** **************************************************************/ int main( int argc, char *argv[] ) { string test = "XXXXXXXXX"; cout &lt;&lt; "this is a test " &lt;&lt; test &lt;&lt; endl; exit( 0 ); } </code></pre> <p>I compile using this command $ g++ -g t3.c -o t3</p> <p>And when I run valgrind it report a memory leak when I try to assign a value to a string. I'm using this simple test to investigate some memoru leak in the real program, and it seems that using string can cause some sort of problem.</p> <p>by 0x8048A6F: main (t3.c:23) is the line : string test = "XXXXXXXXX"; Can someone give some hint on such , strange behaviour ? Regards, Enzo</p> <pre><code>[enzo@P0101222 C]$ valgrind --leak-check=full ./t3 ==3910== Memcheck, a memory error detector. ==3910== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward et al. ==3910== Using LibVEX rev 1732, a library for dynamic binary translation. ==3910== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP. ==3910== Using valgrind-3.2.3, a dynamic binary instrumentation framework. ==3910== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward et al. ==3910== For more details, rerun with: -v ==3910== this is a test XXXXXXXXX ==3910== ==3910== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 25 from 1) ==3910== malloc/free: in use at exit: 102 bytes in 3 blocks. ==3910== malloc/free: 4 allocs, 1 frees, 126 bytes allocated. ==3910== For counts of detected errors, rerun with: -v ==3910== searching for pointers to 3 not-freed blocks. ==3910== checked 194,136 bytes. ==3910== ==3910== 16 bytes in 1 blocks are definitely lost in loss record 1 of 3 ==3910== at 0x4017846: malloc (m_replacemalloc/vg_replace_malloc.c:149) ==3910== by 0x4018E05: realloc (m_replacemalloc/vg_replace_malloc.c:306) ==3910== by 0x41B441A: argz_append (in /lib/libc-2.2.5.so) ==3910== by 0x41593B9: __newlocale (in /lib/libc-2.2.5.so) ==3910== by 0x40E010B: std::locale::facet::_S_create_c_locale(__locale_struct*&amp;, char const*, __locale_struct*) (c++locale.cc:99) ==3910== by 0x407EF6F: std::locale::facet::_S_initialize_once() (../../.././libstdc++-v3/src/locale.cc:172) ==3910== by 0x407EFB4: std::locale::facet::_S_get_c_locale() (../../.././libstdc++-v3/src/locale.cc:185) ==3910== by 0x407A422: std::ctype&lt;char&gt;::ctype(unsigned short const*, bool, unsigned) (/usr3/BUILD/gcc/gcc-3.4.6/i686-pc-linux-gnu/libstdc++-v3/include/i686-pc-linux-gnu/bits/ctype_noninline.h:104) ==3910== by 0x40801D5: std::locale::_Impl::_Impl(unsigned) (/usr3/BUILD/gcc/gcc-3.4.6/libstdc++-v3/libsupc++/new:92) ==3910== by 0x4080EED: std::locale::_S_initialize_once() (/usr3/BUILD/gcc/gcc-3.4.6/libstdc++-v3/libsupc++/new:92) ==3910== by 0x4080F84: std::locale::_S_initialize() (../../.././libstdc++-v3/src/locale_init.cc:155) ==3910== by 0x4080FE7: std::locale::locale() (../../.././libstdc++-v3/src/locale_init.cc:102) ==3910== ==3910== ==3910== 22 bytes in 1 blocks are possibly lost in loss record 2 of 3 ==3910== at 0x4017C38: operator new(unsigned) (m_replacemalloc/vg_replace_malloc.c:163) ==3910== by 0x40BF2C4: std::string::_Rep::_S_create(unsigned, unsigned, std::allocator&lt;char&gt; const&amp;) (/usr3/BUILD/gcc/gcc-3.4.6/i686-pc-linux-gnu/libstdc++-v3/include/ext/new_allocator.h:81) ==3910== by 0x40C1CE4: char* std::string::_S_construct&lt;char const*&gt;(char const*, char const*, std::allocator&lt;char&gt; const&amp;, std::forward_iterator_tag) (/usr3/BUILD/gcc/gcc-3.4.6/i686-pc-linux-gnu/libstdc++-v3/include/bits/basic_string.tcc:150) ==3910== by 0x40C1E15: std::string::string(char const*, std::allocator&lt;char&gt; const&amp;) (/usr3/BUILD/gcc/gcc-3.4.6/i686-pc-linux-gnu/libstdc++-v3/include/bits/basic_string.h:1386) ==3910== **by 0x8048A6F: main (t3.c:23)** ==3910== ==3910== LEAK SUMMARY: ==3910== definitely lost: 16 bytes in 1 blocks. ==3910== **possibly lost: 22 bytes in 1 blocks.** ==3910== still reachable: 64 bytes in 1 blocks. ==3910== suppressed: 0 bytes in 0 blocks. ==3910== Reachable blocks (those to which a pointer was found) are not shown. ==3910== To see them, rerun with: --leak-check=full --show-reachable=yes [enzo@P0101222 C]$ </code></pre> http://stackoverflow.com/questions/1900843/is-there-an-easy-way-to-compare-two-strings-in-a-jsp 0 Is there an easy way to compare two strings in a jsp? CJ 2009-12-14T13:10:08Z 2009-12-14T13:42:08Z <p>I am creating a drop down list of all languages, with the language used when creating other info in the page as the default selected in the list: <code></p> <pre><code> &lt;select&gt; &lt;c:forEach items="${languages}" var="lang"&gt; &lt;c:choose&gt; &lt;c:when test="${lang}.equals(${pageLang})"&gt; &lt;option value="${lang}" selected&gt;${lang}&lt;/option&gt; &lt;/c:when&gt; &lt;c:otherwise&gt; &lt;option value="${lang}"&gt;${lang}&lt;/option&gt; &lt;/c:otherwise&gt; &lt;/c:choose&gt; &lt;/c:forEach&gt; &lt;/select&gt; </code></pre> <p></code></p> <p>But .equals doesn't appear to exist in JSPs. Having had a look here it's suggested I write my own function and then import and use that. As this is a one off tiny thing just for this page I don't want to have to start creating libraries etc just for this. Nor do I want to start creating specialist objects for the servlet to return with this extra info in them. </p> <p>Only thing I can think to do is to return the actual html for the whole option line from the servlet rather than just the language string, but that strikes me as ugly so I'm hoping there's a more elegant solution.</p> <p>Essentially, anyone got any good ideas as to the best plan for a quick fix to comparing two strings in a JSP?</p> <p><a href="http://java.sun.com/j2ee/1.4/docs/tutorial/doc/JSPIntro7.html#wp77078" rel="nofollow">link text</a></p> http://stackoverflow.com/questions/1900477/can-one-initialise-a-java-string-with-a-single-repeated-character-to-a-specific-l 1 Can one initialise a java String with a single repeated character to a specific length. Ron Tuffin 2009-12-14T11:52:40Z 2009-12-14T11:58:11Z <p>I'd like to create a function that has the following signature: </p> <pre><code>public String createString(int length, char ch) </code></pre> <p>It should return a string of repeating characters of the specified length.</p> <p>For example if length is 5 and ch is 'p' the return value should be </p> <pre><code>ppppp </code></pre> <p>Is there a way to do this without looping until it is the required length?<br> And without any externally defined constants?</p> http://stackoverflow.com/questions/1881922/questions-about-javas-string-pool 7 Questions about Java's String pool dmindreader 2009-12-10T15:51:05Z 2009-12-14T10:24:24Z <p>Consider this code:</p> <pre><code>String first = "abc"; String second = new String ("abc"); </code></pre> <p>When using the <strong>new</strong> keyword, Java will create the <code>abc String</code> again right? Will this be stored on the regular heap or the <code>String</code> pool? How many <code>Strings</code> will end in the <code>String</code> pool?</p> http://stackoverflow.com/questions/1899698/truncate-a-string-with-an-ellipsis-making-sure-not-to-break-any-html-entity 0 Truncate a string with an ellipsis, making sure not to break any HTML entity blahblah 2009-12-14T08:40:38Z 2009-12-14T08:55:35Z <p>I have a database of items with XHTML content and I want to display the items with the HTML stripped off (done) and then truncate each item to a maximum length of 100 characters. If the string exceeds 100 characters, I cut it off and insert <code>&amp;hellip;</code> (an ellipsis) at the end.</p> <p>The problem is that my program doesn't understand HTML entities that are <em>already</em> in the string. E.g. if the string is <code>something &amp;amp; something</code>, my function may truncate it as <code>something &amp;am...</code> resulting in <em>invalid XHTML</em>.</p> <p>What is the best way to go about this problem in ASP.NET/C#?</p> http://stackoverflow.com/questions/458550/standard-way-to-embed-version-into-python-package 12 Standard way to embed version into python package? Dimitri Tcaciuc 2009-01-19T18:05:54Z 2009-12-14T06:38:34Z <p>Hey everyone,</p> <p>Is there a standard way to associate version string with a python package in such way that I could do the following?</p> <pre><code>import foo print foo.version </code></pre> <p>I would imagine there's some way to retrieve that data without any extra hardcoding, since minor/major strings are specified in <code>setup.py</code> already. Alternative solution that I found was to have <code>import __version__</code> in my <code>foo/__init__.py</code> and then have <code>__version__.py</code> generated by <code>setup.py</code> </p> <p>Thanks,</p> http://stackoverflow.com/questions/1898659/ruby-stringcrypt-in-c-and-php 0 Ruby string#crypt in c# and php Ryex 2009-12-14T02:31:19Z 2009-12-14T03:11:12Z <p>I have a ruby client program that encrypts a password with string#crypt like so</p> <pre><code> encrypted = password.crypt(SALT) # removing first two characters which actually are the salt for safety return encrypted[2, encrypted.size - 2] </code></pre> <p>it then sends it to a server for comparison with it's stored pre-encrypted string. how ever I need to be able to send the same encrypted password form a c# app and a php web page and still be able to log in with the same password from any of the other clients.</p> <p>what would be the equivalent code in C# and php for the encryption?</p> http://stackoverflow.com/questions/1898343/int-string-format-problem 0 Int String format problem Jonny 2009-12-14T00:22:18Z 2009-12-14T03:06:54Z <p>Hi guys, I'm returning this, it is similar to how you percieve dollars, $"32.95" etc. I calculate it in cents which is an int, but the problem is the second half cuts off the 10s of cents part if the number is less than that. For example if I have "32.08" it returns as "32.8". Any ideas ? i know i need an if but i cant think how to write it.</p> <pre><code>public String toString() { return (cents / 100)+ "." + (cents % 100); } </code></pre> http://stackoverflow.com/questions/51949/how-to-get-file-extension-from-string-in-c 2 How to get file extension from string in C++ Jeff V 2008-09-09T13:57:34Z 2009-12-13T21:34:53Z <p>Given a string "filename.conf", how to I verify the extension part?</p> <p>I need a cross platform solution.</p> http://stackoverflow.com/questions/1897569/how-can-i-deal-with-unicode-in-php-without-mbstring-extension 3 how can I deal with unicode in PHP without mbstring extension Ayoub 2009-12-13T20:03:44Z 2009-12-13T21:15:34Z <p>I am using a shared hosting service to host my site so I can't get direct access to PHP configuration or install any extension. So my problem is with utf-8 strings that can't be processed by standard PHP string functions since I don't have mbstring extension installed on the server. I am looking for another way to deal with unicode strings, any help or guidance is very appreciated or if you know of any online resources please share them with me.</p> http://stackoverflow.com/questions/1610616/array-component-with-string-keys 1 array component with string keys Leo 2009-10-22T23:37:40Z 2009-12-13T20:24:36Z <p>About two years ago I have found a component that can be used to create array with string keys on delphi... anyone know a component like this??</p> http://stackoverflow.com/questions/1896145/basic-java-question-string-equality 2 Basic java question: String equality novice 2009-12-13T10:49:00Z 2009-12-13T17:30:49Z <pre><code>public class A { static String s1 = "I am A"; public static void main(String[] args) { String s2 = "I am A"; System.out.println(s1 == s2); } } </code></pre> <p>Above program outputs "true". Both are two different identifiers/objects how the output is "true" ?</p> <p>My understanding is jvm will create different reference for each object, if so how the output is true ? </p> http://stackoverflow.com/questions/1896656/simple-wildcard-match-with-stdstring 1 simple wildcard match with std::string Eli 2009-12-13T14:28:55Z 2009-12-13T17:20:28Z <p>I have std::string with the follwing format </p> <pre><code>std::string s = "some string with @lable" </code></pre> <p>I have to find all instances of '@' and then find the identifier right after the '@' , this ID has a value (in this case 'lable' stored for it in a look up table. I will then replace the @ and the id with the found value.</p> <p>for example suppose the ID label has the value '1000' after the process the string will look like :</p> <pre><code>"some string with 1000" </code></pre> <p>my first version used boost::regex, but I had to dump it after I was told that new libs are not allowed in the next few builds.</p> <p>so is there some elegant way to do it with vanilla std::string and std algorithms ?</p> http://stackoverflow.com/questions/1741191/creating-a-file-stream-that-results-in-a-string 0 Creating a FILE * stream that results in a string Edmund 2009-11-16T10:01:30Z 2009-12-13T13:01:43Z <p>I'm looking for a way to pass in a <code>FILE *</code> to some function so that the function can write to it with <code>fprintf</code>. This is easy if I want the output to turn up in an actual file on disk, say. But what I'd like instead is to get all the output as a string (<code>char *</code>). The kind of API I'd like is:</p> <pre><code>/** Create a FILE object that will direct writes into an in-memory buffer. */ FILE *open_string_buffer(void); /** Get the combined string contents of a FILE created with open_string_buffer (result will be allocated using malloc). */ char *get_string_buffer(FILE *buf); /* Sample usage. */ FILE *buf; buf = open_string_buffer(); do_some_stuff(buf); /* do_some_stuff will use fprintf to write to buf */ char *str = get_string_buffer(buf); fclose(buf); free(str); </code></pre> <p>The <strong>glibc</strong> headers seem to indicate that a FILE can be set up with hook functions to perform the actual reading and writing. In my case I think I want the write hook to append a copy of the string to a linked list, and for there to be a <code>get_string_buffer</code> function that figures out the total length of the list, allocates memory for it, and then copies each item into it in the correct place.</p> <p>I'm aiming for something that can be passed to a function such as <code>do_some_stuff</code> without that function needing to know anything other than that it's got a <code>FILE *</code> it can write to.</p> <p>Is there an existing implementation of something like this? It seems like a useful and C-friendly thing to do -- assuming I'm right about the <code>FILE</code> extensibility.</p> http://stackoverflow.com/questions/1893393/string-replace-var-output 0 string.replace var output Phil Jackson 2009-12-12T13:19:21Z 2009-12-13T10:17:29Z <p>Hi could some one show me how to do the following:</p> <pre><code>var regep = /margin-bottom:([^;]+); margin-left:0px; margin-right:0px; margin-top:([^;]+);/; elementCSS = elementCSS.replace( regep , "margin-bottom:\\1; margin-left:auto; margin-right:auto; margin-top:\\2;"); </code></pre> <p>\1 to = ([^;]+) (margin-bottom) and \2 to = ([^;]+) (margin-top)</p> <p>?? Cant seem to figure it out..</p> <p>Regards Phil</p> http://stackoverflow.com/questions/1894886/parsing-a-comma-delimited-stdstring 0 Parsing a comma-delimited std::string Piku 2009-12-12T22:21:56Z 2009-12-13T04:49:50Z <p>If I have a std::string containing a comma-separated list of numbers, what's the simplest way to parse out the numbers and put them in an integer array?</p> <p>I don't want to generalise this out into parsing anything else. Just a simple string of comma separated integer numbers such as "1,1,1,1,2,1,1,1,0".</p> http://stackoverflow.com/questions/1895344/strerrorr-causes-error-when-compiling-on-sunos-c-programming 0 strerror_r causes error when compiling on SunOS (C Programming) Jenna 2009-12-13T01:58:44Z 2009-12-13T02:36:23Z <p>I have a C program which compiles and runs fine under Linux without any warnings, but when trying to compile it on SunOS, I get the following warning:</p> <pre><code>test.c: In function `my_function': test.c:412: warning: implicit declaration of function `strerror_r' Undefined first referenced symbol in file strerror_r /var/tmp/ccRiPoGl.o ld: fatal: Symbol referencing errors. No output written to test collect2: ld returned 1 exit status make: *** [test] Error 1 </code></pre> <p>Any ideas?</p> http://stackoverflow.com/questions/1893816/how-to-override-ord-behaivour-in-python-for-str-childs 2 How to override ord behaivour in Python for str childs? Juanjo Conti 2009-12-12T15:52:03Z 2009-12-12T16:44:49Z <p>I have this class:</p> <pre><code>class STR(str): def __int__(self): return 42 </code></pre> <p>If i use it in the promt like this:</p> <pre><code>&gt;&gt;&gt; a=STR('8') &gt;&gt;&gt; ord(a) 56 &gt;&gt;&gt; int(a) 42 &gt;&gt;&gt; chr(a) '*' </code></pre> <p>that's the behaivour. I'd like to ord(a) be 42. How can I do it? Which method should I override in the str class? Is all this documented anywhere?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1893277/how-to-convert-a-string-value-to-a-variable-in-javascript 0 How to convert a string value to a variable in javascript? Jronny 2009-12-12T12:33:00Z 2009-12-12T14:27:28Z <pre><code>var test1; $(document).ready(function () { test1 = $("#test1ID").jQueryPlugin(); }); var test2; $(document).ready(function () { test2 = $("#test2ID").jQueryPlugin(); }); ... </code></pre> <p>This is done so we could just do <code>test1.foo()</code>... foo is a function inside the jQueryPlugin that is accessible using <code>test1.foo()</code> syntax;</p> <p>So we have an array of strings which contains (test1, test2, ...) and we need to access foo() while on the loop:</p> <pre><code>for(i=0; i &lt; theArrayOfStrings.length; i++){ theArrayOfStrings[i].foo(); //so here is the problem... we can't do test1.foo(), test2.foo() ... =( } </code></pre> <p>Any idea on how to call function foo() while on the loop? Or can we convert a string value to a variable in javascript?</p> http://stackoverflow.com/questions/1893108/string-empty-startswithchar10781-tostring-always-returns-true 3 string.Empty.StartsWith(((char)10781).ToString()) always returns true? DxCK 2009-12-12T11:23:57Z 2009-12-12T12:53:57Z <p>I trying to handle to following character: ⨝ (<a href="http://www.fileformat.info/info/unicode/char/2a1d/index.htm" rel="nofollow">http://www.fileformat.info/info/unicode/char/2a1d/index.htm</a>)</p> <p>If you checking whether an empty string starting with this character, it always returns true, this does not make any sense! Why is that?</p> <pre><code>// visual studio 2008 hides lines that have this char literally (bug in visual studio?!?) so i wrote it's unicode instead. char specialChar = (char)10781; string specialString = specialChar.ToString(); // prints 1 Console.WriteLine(specialString.Length); // prints 10781 Console.WriteLine((int)specialChar); // prints false Console.WriteLine(string.Empty.StartsWith("A")); // both prints true WTF?!? Console.WriteLine(string.Empty.StartsWith(specialString)); Console.WriteLine(string.Empty.StartsWith(((char)10781).ToString())); </code></pre>