彩票走势图

logo FastReport中文文档

文本


注意

这些函数不会修改传入的字符串值。相反,它们会返回一个修改后的新字符串;

字符串中第一个字符的索引为 0。在使用需要字符索引的函数(如 Insert)时,请记住这一点。

Asc

Function Parameters Return value
Asc char c int
返回一个整数值,表示与字符对应的字符代码。

示例

Asc('A') = 65

Chr

Function Parameters Return value
Chr int i char
返回与指定字符代码相关的字符。

例如:

Chr(65) = 'A'

Insert

Function Parameters Return value
Insert string s, int startIndex, string value string
在指定的索引位置 "startIndex "处向 "s "字符串中插入 "value "子串,并返回新字符串。

示例

Insert("ABC", 1, "12") = "A12BC"

Length

Function Parameters Return value
Length string s int
返回 "s "的长度。

例如:

Length("ABC") = 3

LowerCase

Function Parameters Return value
LowerCase string s string
将 "s "的所有字符转换为小写,并返回结果。

示例

LowerCase("ABC") = "abc"

PadLeft

Function Parameters Return value
PadLeft string s, int totalWidth string
将 "s "字符串中的字符右对齐,并在左侧填充空格,总宽度由参数 "totalWidth "指定。

示例

PadLeft("ABC", 5) = "  ABC"
Function Parameters Return value
PadLeft string s, int totalWidth, char paddingChar string
将字符串 "s "中的字符向右对齐,并用左边的 "paddingChar "字符填充,总宽度由参数 "totalWidth "指定。

示例

PadLeft("ABC", 5, '0') = "00ABC"

PadRight

Function Parameters Return value
PadRight string s, int totalWidth string
将字符串 "s "中的字符左对齐,并在右侧填充空格,总宽度由参数 "totalWidth "指定。

例如

PadRight("ABC", 5) = "ABC  "

Function Parameters Return value
PadRight string s, int totalWidth, char paddingChar string
将字符串 "s "中的字符向左对齐,并用右侧的 "paddingChar "字符填充,总宽度由参数 "totalWidth "指定。

示例

PadRight("ABC", 5, '0') = "ABC00"

Remove

Function Parameters Return value
Remove string s, int startIndex string
删除字符串 "s "中的所有字符,从 "startIndex "位置开始,一直到最后一个位置。

示例

Remove("ABCD", 3) = "ABC"
Function Parameters Return value
Remove string s, int startIndex, int count string
从 "s "字符串的 "startIndex "位置开始,删除参数 "count "中指定的字符数。

示例

Remove("A00BC", 1, 2) = "ABC"

Replace

Function Parameters Return value
Replace string s, string oldValue, string newValue string
返回用另一个子串 "newValue "替换了指定子串 "oldValue "的字符串 "s"。

示例

Replace("A00", "00", "BC") = "ABC"

Substring

Function Parameters Return value
Substring string s, int startIndex string
从字符串 "s "中读取一个子字符串。子串从参数 "startIndex "中指定的字符位置开始。

示例

Substring("ABCDEF", 4) = "EF"
Function Parameters Return value
Substring string s, int startIndex, int length string
从字符串 "s "中读取一个子字符串。子字符串从参数 "startIndex "指定的字符位置开始,长度由参数 "length "指定。

示例

Substring("ABCDEF", 1, 3) = "BCD"

TitleCase

Function Parameters Return value
TitleCase string s string
将指定字符串转换为大小写。

示例

TitleCase("john smith") = "John Smith"

Trim

Function Parameters Return value
Trim string s string
删除 "s "字符串开头和结尾的所有空白字符。

例如

Trim("  ABC  ") = "ABC"

UpperCase

Function Parameters Return value
UpperCase string s string
将 "s "的所有字符转换为大写字母,并返回结果。

示例

UpperCase("abc") = "ABC"
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP