E r g e b n i s / R e s u l t
Wandelt einen String in Großbuchstaben um.
Converts a string to uppercase letters
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 all lowercase letters have been
converted to uppercase.
This function is identical to the Open Access UCASE Programmer function.
It has been provided for users of the Database Screen and Print forms.
S y n t a x
Code:
answer = call ('UCASE' , 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 ('UCASE' , 'Test String') ! prints TEST STRING
a = 'AA Aerospace'
b = call ('UCASE' , a) ! b contains 'AA AEROSPACE'
detach 'string' Q u e r v e r w e i s / R e f e r e n c e
LCASE
PROPER