Factbites
 Where results make sense
About us   |   Why use us?   |   Reviews   |   PR   |   Contact us  

Topic: Substring


In the News (Thu 16 Feb 12)

  
  Terminal Substring Parsing
The sentence is segmented into substrings, by breaking it at commas, conjunctions, relative pronouns, and certain instances of the word ``that''.
However, in terminal substring parsing, this recombining is not necessary, since the favored analyses of subsequent segments are already available when a given segment is being parsed.
When parsing the sentence-initial 10-word substring, we are in effect parsing at most a ``15-word'' string covering the entire sentence, consisting of the 10 words plus the nonterminal symbols covering the best analyses of the other five substrings.
www.isi.edu /~hobbs/robust/node9.html   (637 words)

  
 SubString class Reference
For this function to work, the SubString constructor would have to increment the reference count of the String, so that the String would not be deallocated on exit (when its reference count reaches zero).
It is only when a SubString is assigned or otherwise operated on that a new String is created (the region of the initialization String defined by the start and length).
The String is the String that was used to initialize the SubString constructor, modified by the assignment.
www.bearcave.com /software/string/doc/html/classSubString.html   (2302 words)

  
 The SUBSTRING signature
val span : substring * substring -> substring
val foldl : (char * 'a -> 'a) -> 'a -> substring -> 'a
val foldr : (char * 'a -> 'a) -> 'a -> substring -> 'a
www.standardml.org /Basis/substring.html   (1127 words)

  
 Maximum Repeating Substring
You must find a substring of an input string, such that the substring consecutively repeats the most number of times.
The answer reported is '3', since the length of the repeating substring is not considered.
Only consecutive repetitions of a substring are counted, so the last two occurrences of 'A' don't count toward the total number of repetitions.
www.cs.umd.edu /Outreach/hsContest98/questions/node1.html   (187 words)

  
 SUBSTR: Extracting a Substring   (Site not responding. Last check: 2007-10-20)
The SUBSTR function extracts a substring based on where it begins and its length in the parent string.
SUBSTR can vary the position of the substring depending on the values of other fields.
Is the starting position of the substring in the parent string.
www.bgsu.edu /offices/its/admin/focus/mf_functions/character22.htm   (255 words)

  
 Longest Common Substring
The trick is to build a suffix tree containing all the strings, label each leaf with the set of strings that contain it, and then do a depth-first traversal to identify the deepest node that has descendents from each input string.
We can reconstruct the actual common substring by walking backward from M [ n, m ] and establishing which characters were actually matched along the way.
A common substring represents a path through these points that moves only up and to the right, never down or to the left.
www2.toki.or.id /book/AlgDesignManual/BOOK/BOOK5/NODE208.HTM   (1212 words)

  
 String (Java 2 Platform SE v1.4.2)
The substring begins with the character at the specified index and extends to the end of this string.
The array returned by this method contains each substring of this string that is terminated by another substring that matches the given expression or is terminated by the end of the string.
The substrings in the array are in the order in which they occur in this string.
java.sun.com /j2se/1.4.2/docs/api/java/lang/String.html   (5105 words)

  
 Tryit Editor v1.4   (Site not responding. Last check: 2007-10-20)
The substr() method returns a specified part of a string.
If you specify (2,6) the returned string will be from the second character (start at 0) and 6 long.
The substring() method also returns a specified part of a string.
www.w3schools.com /js/tryit.asp?filename=tryjs_substr   (77 words)

  
 SQL Reference SUBSTRING Function   (Site not responding. Last check: 2007-10-20)
to extract a substring from a table column or character literal, specified in the column reference.
specifier is the character position at which the extracted substring starts within the original string.
specifier is optional, and specifies the length of the extracted substring.
tmoa.org /help/sql/substring.htm   (168 words)

  
 DevGuru WMLScript Function: String.subString
This function treats a string as an array where the first index position is numbered zero and the last index position is the total length of the string minus one.
The mandatory length parameter is an integer number that is the overall length (size) of the substring.
If the combination of the start index and length calls for a substring that would extend past the actual end of the given string, then a truncated substring is returned and no error is generated.
devguru.com /Technologies/wmlscript/quickref/wmls_string_substring.html   (233 words)

  
 PString::SubString   (Site not responding. Last check: 2007-10-20)
This SubString member function returns as its functional result a pointer to a PString object encapsulating the substring beginning at lBeg (indexed from 0) and proceeding to the end of the character string encapsulated by the presenting PString object.
This SubString member function returns as its functional result a pointer to a PString object encapsulating the substring beginning at lBeg (indexed from 0) and proceeding for lCnt succeeding characters in the character string encapsulated by the presenting PString object.
If the requested substring does not exist (the string of the presenting object does not exist or the beginning or ending of the substring is out of range), then a null pointer is returned.
www.lerc.nasa.gov /WWW/price000/pfc/htm/pstring_substring.html   (195 words)

  
 substring   (Site not responding. Last check: 2007-10-20)
Definition: A string v is a substring of a string u if u=u′ vu″ for some prefix u′ and suffix u″.
From Algorithms and Theory of Computation Handbook, pages 11-26 and 12-21, Copyright © 1999 by CRC Press LLC.
AUTHOR(S), "substring", from Dictionary of Algorithms and Data Structures, Paul E. Black, ed., NIST.
www.nist.gov /dads/HTML/substring.html   (104 words)

  
 POSIT: Finding the Beginning of a Substring   (Site not responding. Last check: 2007-10-20)
If the substring is not in the parent string, the function returns the value 0.
Is the parent character string enclosed in single quotation marks, or a field or variable that contains the parent character string.
This can be the substring enclosed in single quotation marks, or the field that contains the string.
www.bgsu.edu /offices/its/admin/focus/mf_functions/character17.htm   (232 words)

  
 dBforums - longest substring in a string
substring (as used in this context) in a more rigorous way.
The longest substring in a string is the string itself.
is the longest substring that repeats at least once.
www.dbforums.com /t573456.html   (2272 words)

  
 SQL: Using the SUBSTRING Function   (Site not responding. Last check: 2007-10-20)
What follows is the syntax for the SUBSTRING function, examples of its use in local SQL queries, and an alternative that will return the same results for IB/LIBS tables.
Here is an example of the SUBSTRING function used in a columns list in a SELECT query (using the sample Paradox table CUSTOMER.DB): SELECT (SUBSTRING(C."COMPANY" FROM 1 FOR 3)) AS SS FROM "CUSTOMER.DB" C This SQL query extracts the first three characters from the COMPANY column, returning them as the calculated column named SS.
As the SUBSTRING function is not supported at all by IB or LIBS databases, it is not possible to have a sub-string operation in the column list of a query (exception: IB can do sub-strings via User-Defined Functions).
community.borland.com /article/0,1410,16153,00.html   (421 words)

  
 INDEX (STRING, SUBSTRING [, BACK] [, KIND])   (Site not responding. Last check: 2007-10-20)
Returns the starting position of a substring within a string.
If the processor cannot represent the result value in the kind of the result, the result is undefined.
If BACK appears with the value true, the value returned is the maximum value of I such that STRING (I : I + LEN (SUBSTRING) - 1) = SUBSTRING (or zero if there is no such value).
h18000.www1.hp.com /fortran/docs/lrm/lrm0263.htm   (188 words)

  
 DevGuru JavaScript OBJECT: String
This method is used to match a specifed regular expression against a string and replace any match with a new substring.
This method splits a string into substrings and creates an array containing the resulting substrings.
This method returns the characters in a string between two specified indices as a substring.
www.devguru.com /Technologies/ecmascript/quickref/string.html   (663 words)

  
 String.Substring Method ( Int32 )
The substring starts at a specified character position.
The starting character position of a substring in the given String.
A String equivalent to the substring that begins at startIndex in the given String.
authors.aspalliance.com /aspxtreme/sys/stringclasssubstring1.aspx   (73 words)

  
 A Limited-Diffusion Algorithm For Blind Substring Search (ResearchIndex)   (Site not responding. Last check: 2007-10-20)
Abstract: Applications are described for "blind substring search," where a program to search files for a substring is published without revealing the substring.
Design criteria for a Boolean function to be used in the limited diffusion algorithm are stated, and a function meeting the criteria is proposed.
An algorithm for blind substring search is developed and discussed.
citeseer.ist.psu.edu /skala98limiteddiffusion.html   (311 words)

  
 adam machanic :: data manipulation for fun and profit : Counting occurrences of a substring within a string
Counting occurrences of a substring within a string
By specifying a pattern for @NoisePattern of characters that shouldn't be adjacent to your word, you're telling the UDF that any other characters are safe.
Leaving the parameter empty means that all occurrences of the substring will be counted.
sqljunkies.com /WebLog/amachanic/articles/CountSubstring.aspx   (318 words)

  
 jGuru: Substring function
Have gone thru the manual and been thru the FAQ (only one entry on substring), can't seem to find it.
Reason because i'm running an external exec task which have some output which are captured in a property.
As for the filterchain method, would try to avoid it as it incurs some disk IO.
www.jguru.com /forums/view.jsp?EID=1174048   (167 words)

  
 [No title]
If you filter a Data Provider using an expression that includes SubString, IndexOf, or DayOfWeek, these functions aren't evaluated using the same semantics as the.NET ones.
SubString and IndexOf return values starting with 1 for the first string position when they should return 0 for the first position.
DayOfWeek returns 1 for Sunday when it should return 0 for Sunday.
app.deklarit.com /kb/article.aspx?id=10088   (150 words)

  
 File Substring Replacement Utility - Search/replace multiple substrings in multiple files.   (Site not responding. Last check: 2007-10-20)
It was designed specifically for computer programmers working on large projects with many source code files, however any type of file can be used, including HTML.
A detailed log is kept of every substring that is found and replaced.
file, substring, replacement, utility, search, replace, multiple, string, search and replace, programmer, programming, tool,...
1000files.com /.../File_Substring_Replacement_Utility_6098_Review.html   (245 words)

  
 dBforums - substring
To extract a substring on positions n to m from a string s you can use
To find a substring in a string you can use
Yes, strncpy() can be made to copy a substring of one string
www.dbforums.com /showthread.php?t=963837   (1280 words)

  
 MySQL Lists: mysql: Re: Does this SUBSTRING() syntax seem strange to you?
Paul From "A guide to the SQL Standard by C.J. Date" SUBSTRING Extracts a substring of a string.
For example, the expression SUBSTRING(S.SNAME FROM 1 FOR 3) extracts the first three charactors of the specified name.
Re: Does this SUBSTRING() syntax seem strange to you?
lists.mysql.com /mysql/9911   (287 words)

  
 Bug ID: 4513622 keeping a substring of a field prevents GC for object
Bug ID: 4513622 keeping a substring of a field prevents GC for object
instead of foo = bar.substring(0,x) use foo = new String(bar.substring(0,x)) but: substring is supposed to return a new String anyway!
Unless otherwise licensed, code in all technical manuals herein (including articles, FAQs, samples) is provided under this License.
bugs.sun.com /bugdatabase/view_bug.do?bug_id=4513622   (295 words)

  
 MySQL Lists: mysql: Re: Does this SUBSTRING() syntax seem strange to you?   (Site not responding. Last check: 2007-10-20)
At 14:22, 19990810, Paul DuBois wrote: >One of the SUBSTRING() variants supported by MySQL is: > >SUBSTRING(str FROM len) Yes, that looks odd to me, too.
I've tried to use it before, with, for example, SELECT SUBSTRING(url FROM 8) WHERE url LIKE ' http://%' and it didn't work like I expected (I know, I should adjust my expectations so that they match the documentation).
But I don't really feel strongly about it.
lists.mysql.com /mysql/9871   (186 words)

  
 Manipulating Strings   (Site not responding. Last check: 2007-10-20)
Length of Matching Substring at Beginning of String
Numerical position in $string of first character in $substring that matches.
echo `expr substr $stringZ 1 2` # ab echo `expr substr $stringZ 4 3` # ABC
www.tldp.org /LDP/abs/html/string-manipulation.html   (893 words)

  
 MySQL Reference Manual :: 12.3 String Functions
In this case, the beginning of the substring is
It's worth noting that the position (pos) part of substring does not work quite the same as the PHP substr() command in that;
I say "reasonably effective" because I noticed after trials on several thousand strings, one to two URL encoded characters avoided decoding in 1-2% of the results.
dev.mysql.com /doc/mysql/en/string-functions.html   (3597 words)

  
 RAV AntiVirus - Win32/Mimail.C@mm Virus Description   (Site not responding. Last check: 2007-10-20)
Next, the file "C:\tmpe.tmp" will be deleted and the thread will wait for 500 minutes and loops again.
If the substring "bank" is present in the foreground window name, Mimail logs confidential data into "C:\tmpe.tmp" and mails the contents to other hardcoded e-mail addresses.
After that, the thread will wait for the same amount of time and loop.
www.ravantivirus.com /virus/showvirus.php?v=203   (635 words)

  
 CF substring?
03/08/2001 09:58 PM Author: Mak Wing Lok Short Link: http://www.houseoffusion.com/lists.cfm/link=m:4:1553:7106 is there any substring function for CF?
If you have received this email in error please notify the system manager.
Damned glad to see you'd know how to handle the situation, though.
www.houseoffusion.com /lists.cfm/link=m:4:1553:7106   (1459 words)

Try your search on: Qwika (all wikis)

Factbites
  About us   |   Why use us?   |   Reviews   |   Press   |   Contact us  
Copyright © 2005-2007 www.factbites.com Usage implies agreement with terms.