answersLogoWhite

0

There are a couple of different ways to convert upper case characters to lower case in easytrieve. One is to use the INSPECT/CONVERTING command.

User Avatar

Wiki User

11y ago

What else can I help you with?

Continue Learning about Engineering

How do you lowercase to uppercase in c plus plus and viceversa?

To convert to uppercase, subtract 32 from all characters in the range 'a' to 'z'. To convert to lower-case, add 32 to all characters in the range 'A' to 'Z'. Note that each character is mapped to a value in the ASCII character table and the difference between character 'A' (#65) and character 'a' (#97) is 32. Using binary notation, characters in the range 65 to 91 ('A' to 'Z') have most significant bits 010 while characters in the range 92 to 122 ('a' to 'z') have most significant bits 011. Therefore switching bit 5 automatically flips a character between uppercase and lower-case, providing the character is an alphabetic character to begin with.


What type of device is used to convert the high voltage on a feeder line to a lower voltage that can be used on the plant floor?

To convert the high voltage on a feeder line to a lower voltage that can be used on the plant floor you use a transformer.


Convertion of upper case char in a string to lower case and vice versa?

You can use the methods toUpperCase & toLowerCase to convert Strings to any case you want.


What effect will a transformer have on alternating current?

A transformer will convert the power to a different voltage, higher or lower depending on the requirement, while wasting very little of the power.


C with the line over it mean with?

A lower case c with a horizontal line above it means "with". This character might be seen as instructions for medication "should be taken "with" food"

Related Questions

How do you convert font lower case to uppper case in excel sheet?

You use the Upper function. So if the text is in A1, then in another cell put the formula: =UPPER(A1) The Lower function will change from upper case to lower case. The Proper function will give you a capital letter at the start and small letters for the rest. =LOWER(A1) =PROPER(A1)


What are the different speech organs and their functions?

uppper lip, teeth,alveolar ridge,hard palate,soft palate,uvula,pharynx,lower lip,tip,blade,front,center,back,root


How do you lowercase to uppercase in c plus plus and viceversa?

To convert to uppercase, subtract 32 from all characters in the range 'a' to 'z'. To convert to lower-case, add 32 to all characters in the range 'A' to 'Z'. Note that each character is mapped to a value in the ASCII character table and the difference between character 'A' (#65) and character 'a' (#97) is 32. Using binary notation, characters in the range 65 to 91 ('A' to 'Z') have most significant bits 010 while characters in the range 92 to 122 ('a' to 'z') have most significant bits 011. Therefore switching bit 5 automatically flips a character between uppercase and lower-case, providing the character is an alphabetic character to begin with.


How do you easily convert high key songs to lower keys?

You have to transpose the music into either a higher or lower key.


What type of device is used to convert the high voltage on a feeder line to a lower voltage that can be used on the plant floor?

To convert the high voltage on a feeder line to a lower voltage that can be used on the plant floor you use a transformer.


How do you convert content of file from lower to upper and upper to lower by using tr command in Linux?

ls -l | tr 'a-z' 'A-Z'


What is defined as a light gray duplicate image that appears on the lower-right edge of a character or object?

Ghosting is defined as a light gray duplicate image that appears on the lower-right edge of a character or object.


How do you convert s video to composite video?

You need a RF modulator to convert the signal to a (RF) TV channel. The audio and video quality will be lower doing this.


Lex code to convert lower case into uppercase?

%% [a-z] printf("%c",yytext[0] - ('a' - 'A')); %%


Why were lower casts more likely to convert to Buddhism?

Because Buddhism rejected the caste system.


How do you place upper and lower case letter same row in Linux?

Simply press down the shift key for an upper case character. Release the shift key for a lower case character - as you appeared to have done to 'How' and 'Linux' in your question.


How do you convert Binary-to-Decimal and Decimal-to-Binary?

You can use a table to convert binary to decimal & back:MSBBinary DigitLSB2827262524232221202561286432168421Figure out the greatest power that will fit into the number you want to convert to binary. Move to the next lower power of two. If you can fit into the next lower number write down a "1", if it can't put down "0". Put together the binary answer.