string

What is the paper "Oliver [1993]" describing a PHP algorithm to calculate text similarity?

There is a function similar_text() in the PHP library. The documentation (http://php.net/manual/en/function.similar-text.php) tells me that "This calculates the similarity between two strings as described in Oliver [1993]." Despite extensive searching, I can't find the paper that "Oliver [1993]" is referring to; nor any candidate for w...

What data type do I choose for storing plain text in Microsoft SQL Server 2008?

For example, there is a string field Name in my C# (Linq-to-SQL); what data type would that SQL field have to be? varchar? nchar? I'm confused. ...

Search a std::string

I'm looking to search a string for example: std::string str = "_Data_End__Begin_Data_End"; |_________| |_____________| data data section1 section2 If i'm searching for "Begin" in str i want to make sure that it does look in "data section2" if it wasn't found in "da...

How to split a string with multi-character delimiter in vb - asp.net?

Hi, How should I split a string separated by a multi-character delimiter in VB? i.e. If my string is say - Elephant##Monkey, How do I split it with "##" ? Thanks! ...

Iterating std::string elements

does it take constant time to move the iterator to elements of string in following: std::string str // string of size 100 MB std::string::iterator iter = str.begin(); std::advance(iter, str.size()-1); would it take constant time as in searching by index? char c = str[str.size()-1]; ...

Easiest way to pass modifyable System.String as modifyable LPTSTR ?

BOOL PathFindOnPath( LPTSTR pszFile, LPCTSTR *ppszOtherDirs ); I am calling this API from managed C++. My pszFile is in a System.String. What is the easiest way to pass this as LPTSTR? (Considering its an inout parameter) I have tried pin_ptr and interior_ptr but neither seems to be accepted by the compiler. ...

format a string to usa phone number in vb.net

just as the question says. I get numbers like 2125550938 or 20298277625552. these should change to (212) 555-0938 and (202) 982-7762 x 5552 respectively. this is in vb.net ...

Drupal 6 & PHP: how to crop part of string with php

Hi friends, I'm a newbie php guy. I have 1 string output from Drupal's date module as below; Dec 5 2010 (All day) - Dec 7 2010 (All day) and I need to display only date, without (All day). So, how can I display it as below? is there any php func that I can crop some parts of string? Dec 5 2010 - Dec 7 2010 appreciate he...

Python: Not all of arguments converted during string formatting

Im wrtiting a script which saves the current date and time as a filename but I get an error stating "TypeError: not all arguments converted during string formatting" I am new to Python andmay of missed something obvious. Code below: from subprocess import Popen import datetime today = datetime.date.today() today = str(today) print to...

How to order a string[] in c++

The input is string[] like below. "CSE111: CSE110 MATH101" "CSE110:" I need to order the strings based on some logic. For example my output should be a string[] like "CSE110","MATH122","CSE111" My question is While scanning through the input array, if one string is picked to be the first string of the output array, ...

How to seperate String into chars

public static string kw; public String parse(String keyword) { this.keyword = keyword; char[] letters = keyword.ToCharArray(); string g; long length = System.Convert.ToInt64(keyword.Length.ToString()); for (int i = 0; i <= length-1; i++) { kw = "/"+letters[i]; } return kw; } So if the keyword i...

Remove Blank spaces in a string in O(n).

How to remove blank spaces in a string with a complexity of O(n). My approach is using two indexes. One will traverse till length on string. Other will be incremented only when a non-blank character is encountered. But i am not sure of this approach. TIA, Praveen ...

+\ operator in Python

What does the +\ operator do in Python? I came across this piece of code - rows=urllib2.urlopen('http://ichart.finance.yahoo.com/table.csv?'+\ 's=%s&d=11&e=26&f=2006&g=d&a=3&b=12&c=1996'%t +\ '&ignore=.csv').readlines( ) and can't find any references that explain it. ...

does google app engine display unicode differently in StringProperty v StringListProperty objs?

I have a db.StringProperty() mRegion that is set to some Korean text. I see in my Dashboard that the value is visibly in Korean like this: 한국 : 충청남도 However, when I take this field and add it into a string list property (db.StringListProperty()) I end up with something like this: \ud55c\uad6d : \ucda9\uccad\ub0a8\ub3c4 I am having i...

simple question about substring in C#

This is perhaps too easy but I do not know from where to start. I have stings like "'02HEX'aspoodsasas'CR''LF'" Now I want to extract stings between char(02) and char(12); Until now I did following string s = string.Format("{0}{1}{2}", (char)02, "12345678", (char)12); int chindx = s.IndexOf((char)02)+1; s = s.Substring(chindx, 8) M...

ARM - Infinite Loop While Searching String

Can anybody point out why? I can't see the problem. String to search: "aassaas" String to search with: "as" SEARCHSTRING: STMFD SP!, {R4-R7, LR} MOV R6, #0 @Matches found MOV R3, #0 @Placeholder LOOP: LDRB R4, [R0] @R4 = String to search LDRB R5, [R1] @R5 = String to sear...

Why must C/C++ string literal declarations be single-line?

Is there any particular reason that multi-line string literals such as the following are not permitted in C++? string script = " Some Formatted String Literal "; I know that multi-line string literals may be created by putting a backslash before each newline. I am writing a programming language (similar to C) and would like ...

C# string to long pointer

Hello, I am working with an application in C# that need to send a message to a C++ application. I imported [DllImport("user32.dll")] public static extern IntPtr SendMessage( int hWnd, // handle to destination window uint Msg, // message IntPtr wParam, // first message parame...

How parse a string as linq exprssion ?

I've this linq to devforce expression : (from r in mgr.testTables select r).OrderBy(r => r.id); I want to specify sorting column name as a string, I need something like this : string orderBy = "r => r.id"; (from r in mgr.testTables select r).OrderBy( orderBy ); is there any way to parse a string as linq expression ? ...

How to use Enum with strings in a function?

Basically, I have a Linked List which implements a display()function that simply loops throught he elements and prints out their values. I wanted to do it like this: void List::display( std::string type ) { switch(type) { // Do stuff... The compiler immediately complained. My teacher said this would be because the strin...