(string)
| 64 | |
| 65 | #remove hyphen and whitespaces from the table name |
| 66 | def cleanTableName(string): |
| 67 | tableName = string.replace("-","") |
| 68 | tableName = ' '.join(tableName.split("_")) |
| 69 | tableName = '_'.join(tableName.split()) |
| 70 | return tableName |
| 71 | |
| 72 | #needed if direct hit is not found in the KB |
| 73 | def extractNouns(stringList): |
nothing calls this directly
no outgoing calls
no test coverage detected