home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 2 / DATAFILE_PDCD2.iso / commercial / pipedream / documents / functions / string < prev    next >
Text File  |  1992-01-08  |  3KB  |  172 lines

  1. %OP%VS4.12 Test (Dec 12 1991), Colton Software - Development, R0123 4567 8901 2345
  2. %OP%DP0
  3. %OP%LP*
  4. %OP%TM4
  5. %OP%BM4
  6. %OP%LM5
  7. %OP%FX
  8. %OP%FY
  9. %OP%FS
  10. %OP%WC2,1750,528,1364,0,0,0,0
  11. %CO:A,9,100%
  12. %C%%H1%String Functions Examples
  13.  
  14. %C%Function
  15.  
  16. Char
  17. Code
  18. Exact
  19. Find
  20. Join
  21. Left
  22. Length
  23. Lower
  24. Mid
  25. Proper
  26. Replace
  27. Rept
  28. Reverse
  29. Right
  30. String
  31. Trim
  32. Upper
  33. Value
  34. %CO:B,22,0%
  35.  
  36.  
  37. %C%Input 1
  38.  
  39. %V%%C%65
  40. %V%%C%F6
  41. %C%PipeDream
  42. %C%nt
  43. %C%Colton 
  44. %C%Colton Software
  45. %C%Exponential
  46. %C%CoMPlicAtED
  47. %C%Corresponding
  48. %C%this is a TITLE
  49. %C%Password : Secret
  50. %C%Can 
  51. %C%Not a Palindrome
  52. %C%Colton Software
  53. %V%%C%65454
  54. %V%%C%"  Lots   of    space "
  55. %C%jUSt liKe tHAt
  56. %C%1000
  57. %CO:C,10,0%
  58.  
  59.  
  60. %C%Input 2
  61.  
  62. %C%-
  63. %C%-
  64. %C%PipeDream
  65. %C%Ancient
  66. %C%Software
  67. %V%%C%6
  68. %C%-
  69. %C% -
  70. %V%%C%4
  71. %C%-
  72. %V%%C%12
  73. %V%%C%2
  74. %C%-
  75. %V%%C%9
  76. %V%%C%0
  77. %C%-
  78. %C%-
  79. %C%-
  80. %CO:D,8,0%
  81.  
  82.  
  83. %C%Input 3
  84.  
  85. %C%-
  86. %C%-
  87. %C%-
  88. %V%%C%1
  89. %C%-
  90. %C%-
  91. %C%-
  92. %C%-
  93. %V%%C%7
  94. %C%-
  95. %V%%C%6
  96. %C%-
  97. %C%-
  98. %C%-
  99. %C%-
  100. %C%-
  101. %C%-
  102. %C%-
  103. %CO:E,12,0%
  104.  
  105.  
  106. %C%Input 4
  107.  
  108. %C%       -
  109. %C%        -
  110. %C%         -
  111. %C%          -
  112. %C%- 
  113. %C%            -
  114. %C%             -
  115. %C%              -
  116. %C%               -
  117. %C%                -
  118. %C%n/a 
  119. %C%                  -
  120. %C%             -
  121. %C%              -
  122. %C%               -
  123. %C%                - 
  124. %C%                 -
  125. %C%-
  126. %CO:F,16,0%
  127.  
  128.  
  129. %C%Output
  130.  
  131. %V%%C%char(B6)
  132. %V%%C%code(B7)
  133. %V%%C%exact(B8,C8)
  134. %V%%C%find(B9,C9,D9)
  135. %V%%C%join(B10,C10)
  136. %V%%C%left(B11,C11)
  137. %V%%C%length(B12)
  138. %V%%C%lower(B13)
  139. %V%%C%mid(B14,C14,D14)
  140. %V%%C%proper(B15)
  141. %V%%C%replace(B16,C16,D16,E16)
  142. %V%%C%rept(B17,C17)
  143. %V%%C%reverse(B18)
  144. %V%%C%right(B19,C19)
  145. %V%%C%string(B20,C20)
  146. %V%%C%trim(B21)
  147. %V%%C%upper(B22)
  148. %V%%C%value(B23)
  149. %CO:G,2,0%%CO:H,85,0%
  150.  
  151.  
  152. Summary
  153.  
  154. Converts ASCII value to character
  155. Converts character to ASCII value
  156. Compares two strings - 1 TRUE, 0 FALSE.
  157. Attempts to find first string within second, starting at %H4%Input3. Input3%H4% is optional
  158. Concatenates any number of strings onto the end of each other string.
  159. Returns the first %H4%Input2%H4% charaters of a string.
  160. Returns the length of a string.
  161. Converts a string to contain only lower case letters.
  162. Extracts %H4%Input3%H4% characters from a string, starting from %H4%Input2%H4%.
  163. Capitalises every letter in a string which does not follow another letter.
  164. Replaces part of the %H4%Input1%H4%, starting with %H4%Input2%H4% up to %H4%Input3%H4% with %H4%Input4%H4%
  165. Repeats a string %H4%Input2%H4% times to form a new string.
  166. Reverses  a string, character by character.
  167. Returns the last %H4%Input2%H4% characters of a string.
  168. Converts a number to a string, using %H4%Input2%H4% decimal places.%H4% Input2%H4% is optional.
  169. Strips all leading and trailing spaces and reduces multiple interior spaces to one.
  170. Converts a string to contain only upper case letters.
  171. Converts a string containing characters 0-9 to a number.
  172.