0
votes
2answers
56 views
Drawing in NStextField
Hey ho!
If you wanted to implement a highlighting for specific substrings in a NSTextField like on the screenshot (Tweetie.app) how would you do it? :)
Thanks for your help!
0
votes
1answer
81 views
Substring of XML datatype column value in SQL server 2005
I have a table in a database in SQL server 2005.one of the column is of XML datatype.the content of the columns is like
<info>This is a sample information .Anyone can he …
0
votes
2answers
93 views
jquery - substring to truncate text?
I'm trying to figure out how to truncate the first paragraph, and I've tried:
$div.children( ('p:eq(0)').substring(0,100));
$div.children( ('p:eq(0)'.substring(0,100)));
But ne …
0
votes
2answers
54 views
AppleScript: Index of substring in string
I want to create a function that returns a substring of a specific string from the beginning of said string up to but not including the start of another specific string. Ideas?
…
1
vote
7answers
160 views
C#: Extract only right most n letters from a string
How can I extract a substring which is composed of the rightmost six letters from another string?
Ex: my string is "PER 343573". Now I want to extract only "343573".
How can I do …
1
vote
3answers
136 views
How to get abc from “abc def”?
"abc def"
"abcd efgh"
If I have a large string with a space that separates two substrings of varying length, what's the best way to extract each of the substrings from the larger …
0
votes
3answers
84 views
How to get a part of String using shell script?
I have a requirement in a shell script. I get this location information from a text file; it is always valid.
/opt/sasuapps/senny/publish/gbl/SANDHYA/drop1
I need to check if …
1
vote
3answers
149 views
l-value substr method in C++
I want to create a substr method in C++ in a string class that I made.
The string class is based on C-style string of course, and I take care of the memory management.
I want to …
2
votes
8answers
490 views
Algorithm to get a list of all words that are anagrams of all substrings (scrabble)?
Eg if input string is helloworld I want the output to be like:
do
he
we
low
hell
hold
roll
well
word
hello
lower
world
...
all the way up to the longest word that is an anagram …
0
votes
5answers
140 views
charAt() or substring? Which is faster?
I want to go through each character in a String and pass each character of the String as a String to another function.
String s = "abcdefg";
for(int i = 0; i < s.length(); i++ …
0
votes
1answer
101 views
How to allow spaces in string when searching for position of substring in C?
I'm stuck on part of my homework, I had to find the rightmost occurrence of a substring inside of a string. I have the first part done (can find substring in single word strings), …
3
votes
9answers
197 views
Most prevalent substring of length X
Hi!
I have a string s and I want to search the most prevalent substring of length X in s, overlap are admited.
For example: s="aoaoa" and X=3, return "aoa" (which appear 2 times in …
0
votes
3answers
122 views
Mysql group by substring
I have a table with the following structure:
id bigNumber text
1 1200321030011010233 "an item with some text"
2 1200321030011014563 "another item with some more text" …
1
vote
4answers
238 views
String index out of bounds? (Java, substring loop)
This program I'm making for a COSC course isn't compiling right, I keep getting the error:
Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out o …
2
votes
3answers
197 views
How to extract words from a sentence efficiently in C?
I need an efficient function that extracts first second and rest of the sentence into three variables.
