Tagged Questions

2
votes
8answers
250 views

How to build Acronyms of a phrase in PHP

Hi I'm looking for a way that I can extract the first letter of each word from an input field and place it into a variable. Example: if the input field is "Stack-Overflow Questions Tags Users" then ...
2
votes
2answers
288 views

How can I create an acronym from a string in MATLAB?

Is there an easy way to create an acronym from a string in MATLAB? For example: 'Superior Temporal Gyrus' => 'STG'
2
votes
1answer
235 views

A string searching algorithm to quickly match an abbreviation in a large list of unabbreviated strings?

I am having a lot of trouble finding a string matching algorithm that fits my requirements. I have a very large database of strings in an unabbreviated form that need to be matched to an arbitrary ...
0
votes
4answers
1k views

is there a string method to capitalize acronyms in python?

This is good: import string string.capwords("proper name") 'Proper Name' This is not so good: string.capwords("I.R.S") 'I.r.s' Is ...