EnglishРусский  

Ads

Perfect Automation tool
All-In-One: Script editor, Launcher, Scheduler, Keyboard & Mouse Recorder. Try now!

CreateInstall
Freeware and commercial installers.

Cell Phone Batteries
Batteries Plus offers batteries for laptop, camcorder, cell phone, camera.

Gentee needs your help!
How to advertise with us
 
laptop battery

str > str

Comparison operation.

operator uint > (
   str left,
   str right
)

Return value

Returns 1 if the first string is greater than the second one. Otherwise, it returns 0.


str >= str

Comparison operation.

operator uint >= (
   str left,
   str right
)

Return value

Returns 1 if the first string is greater or equal the second one. Otherwise, it returns 0.


str %> str

Comparison operation with ignore case.

operator uint %> (
   str left,
   str right
)

Return value

Returns 1 if the first string is greater than the second one with ignore case. Otherwise, it returns 0.


str %>= str

Comparison operation with ignore case.

operator uint %>= (
   str left,
   str right
)

Return value

Returns 1 if the first string is greater or equal the second one with ignore case. Otherwise, it returns 0.

Related links

Source

Edit