[Overview][Resource strings][Constants][Types][Procedures and functions][Index] |
Convert tab characters to a number of spaces
Source position: strutils.pp line 156
function Tab2Space( |
const S: string; |
Numb: Byte |
):string; |
S |
|
String in which to replace tab characters. |
Numb |
|
Number of spaces to replace tab characters with. |
Strng with tab characters replaced
Tab2Space returns a copy of S with all tab characters (ASCII character 9) converted to Numb spaces.
None.
|
Replace part of a string with another string. |
|
|
Search for a substring in a string, using wildcards. |
|
|
Extract the N-th word out of a string. |
|
|
Delete all occurrences of a given character from a string. |
|
|
Delete all occurrences of a space from a string. |
|
|
Reduces sequences of space characters to 1 space character. |
|
|
Creates and concatenates N copies of a string |