INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |
-- rotate the string around 'axis'
-- example: s="ABC@DEFG", axis='@', result="DEFG@ABC".
-- enfold the specified string by the prefix 'prefx' and
-- the suffix 'suffx'
-- pad the string to the specified length by zeroes from the left
-- returns a string representation of 'n' padded
-- by zeroes from the left
-- enfold the specified string by quotes
-- returns address of string's store or Null pointer if it is Void
-- returns length of specified string or 0 if it's Void
-- trims string from both sides and returns the result
-- trims string from the right side and returns the result
-- same as STRING's but creates empty string when
-- 'upper' < 'lower' and corrects these indices when they
-- run out from string's bounds
-- returns the original string without specified symbols
-- returns the original string without blanks
-- returns the string without quoted literals
-- is there at least one blank?
-- count digits in the specified string
-- returns True if 's' is one of strings in 'a'
-- note case-sensitivity of this method
-- 'a'-'z' or 'A'-'Z'
-- '0'-'9'
-- 'a'-'z' or 'A'-'Z' or '0'-'9' or '_'
-- '$', '#', '@', '^'
INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |