Details
-
Type:
Bug
-
Status: Done
-
Resolution: Done
-
Fix Version/s: None
-
Component/s: Systems Engineering
-
Labels:None
-
Story Points:1
-
Team:Architecture
Description
I noticed that the acronym DBA did not show up in my generated acronyms. There is a lot of output which is not needed so it may have complained.
When I added it to myacronyms.txt it showed up fine .. now I wonder if I am missing others ...
Tim Jenness I may try to look at this next week unless its just too verbose output
The code doesn't try to find all possible acronyms. It specifically tries to match the list of known acronyms against the supplied text. It does this with a single regular expression rather than analyzing each line for a collection of upper case characters. It wouldn't be too hard to flip things round to extract all things that look like an acronym from the text and then compare with the acronym list, but it would need us to agree what an acronym is since some seem to have lower case characters so \b[A-Z][A-Z\&][A-Z]\b isn't sufficient.