E r g e b n i s / R e s u l t
Setzt einen String in on Groß- in Groß-Kleinschreibung um
B e s c h r e i b u n g / D e s c r i p t i o n
This function returns a string where letters starting a word have been
converted to uppercase, while the other letters in the word are
converted to lowercase.
This function replaces the two Open Access programs previously required
to convert the string.
S y n t a x
Code:
answer = call ('PROPER' , string) P a r a m e t e r
string - is any string or constant
R e t u r n s
Returns a string variable of the same length as the string passed to i
B e i s p i e l / E x a m p l e
Code:
attach 'string'
put call ('PROPER' , 'TEST STRING') ! prints Test String
a = '27 HIGH STREET, MIDTOWN'
b = call ('PROPER' , a) ! b contains '27 High Street, Midtown'
detach 'string' Q u e r v e r w e i s / R e f e r e n c e
LCASE
UCASE