Merge pull request #770 from JulienPivard/fixadafilename
fix ada filename mixedcase with - object oriented
This commit is contained in:
commit
02e9bf2b5c
@ -5,7 +5,9 @@ global !p
|
|||||||
def ada_case(word):
|
def ada_case(word):
|
||||||
out = word[0].upper()
|
out = word[0].upper()
|
||||||
for i in range(1, len(word)):
|
for i in range(1, len(word)):
|
||||||
if word[i - 1] == '_':
|
if word[i] == '-':
|
||||||
|
out = out + '.'
|
||||||
|
elif word[i - 1] == '_' or word[i - 1] == '-':
|
||||||
out = out + word[i].upper()
|
out = out + word[i].upper()
|
||||||
else:
|
else:
|
||||||
out = out + word[i]
|
out = out + word[i]
|
||||||
|
Loading…
Reference in New Issue
Block a user