Top "Prefix" questions

A prefix is a part of a word attached to a beginning of a word which modifies the meaning of that stem.

Determine prefix from a set of (similar) strings

I have a set of strings, e.g. my_prefix_what_ever my_prefix_what_so_ever my_prefix_doesnt_…

python string prefix
How to remove filename prefix with a Posix shell

How can I remove the filename prefix in Bash as in the following example: XY TD-11212239.pdf to get 11212239.pdf …

bash shell prefix
How to delete items with same prefix key in memcached?

For example, I have some cached items with same prefix, such as 'app_111111', 'app_222222', 'app_333333', ... Can I …

php memcached prefix
Remove prefix from string in Groovy

I need to remove prefix from String in Groovy if it begins the string (no action otherwise). If prefix is …

string groovy substring prefix
Windows batch to add prefix to file names, why added twice?

In order to add a simple "hello" prefix to all pdf files in a folder I'm using this batch file: …

windows file batch-file batch-processing prefix
How can I prefix ordered list item numbers with a static string using CSS?

I want this HTML... <ol style="list-style:decimal;"> <li>Apples</li> <li>…

html css prefix html-lists
Replace spaces with dash and remove prefix from string

I'm using this to remove spaces and special characters and convert characters to lowercase: ''.join(e for e in …

python string replace prefix
Regex to match strings that begin with specific word and after that words seperated by slashes

So i want to match all strings of the form with a regex (word1|word2|word3)/some/more/text/..unlimited …

regex prefix slash
java.util.logging: how to set level by logger package (or prefix)?

My app uses many libraries and I'm using java.util.logging for logging. I'd like to be able to set …

logging package prefix java.util.logging log-level
Where does the k prefix for constants come from?

it's a pretty common practice that constants are prefixed with k (e.g. k_pi). But what does the k …

c++ objective-c c prefix hungarian-notation