1. StrConv()函数:
在MS Access中,StrConv()函数返回一个转换后的字符串。在此,我们将传递第一个参数字符串和第二个参数转换。
可能的转换值 | |
---|---|
1 | 对于大写 |
2 | 小写 |
3 | 对于每个单词的首字母大写 |
4 | 从窄到宽 |
16 | 平假名进入片假名(仅限日本) |
32 | 对于片假名进入平假名(仅限日本) |
64 | 用于转换为unicode |
128 | 对于Unicode到默认页面代码 |
用法:
StrConv(string1, conversion)
示例1:
SELECT StrConv("GeeksforGeeks", 1) AS ConvertedString;
输出-
ConvertedString |
GEEKSFORGEEKS |
示例-2:
SELECT StrConv("geeks for geeks", 3) AS ConvertedString;
输出-
ConvertedString |
极客 |
2. StrReverse()函数:
在MS Access中,StrReverse()函数反转给定的字符串。在此函数中,将传递一个字符串并返回反转的字符串。
用法:
StrReverse(string)
示例1:
SELECT StrReverse("Geeksforgeeks") AS StringReverse;
输出-
StringReverse |
skeegrofskeeg |
示例-2:
SELECT StrReverse("Gfg") AS StringReverse;
输出-
StringReverse |
gfG |
相关用法
- MS Access Hex()、Oct()用法及代码示例
- MS Access SLN()、SYD()用法及代码示例
- MS Access DDB()、FV()用法及代码示例
- MS Access Val()、Sum()用法及代码示例
- MS Access Sgn()、Sqr()用法及代码示例
- MS Access Chr()、Asc()用法及代码示例
- MS Access InStr()、InstrRev()用法及代码示例
- MS Access LCase()、UCase()用法及代码示例
- MS Access Str()、StrComp()用法及代码示例
- MS Access Replace()、Space()用法及代码示例
- MS Access Exp()、Count()用法及代码示例
- MS Access Mid()、Len()用法及代码示例
- MS Access LTrim()、RTrim()用法及代码示例
- MS Access Left()、Right()用法及代码示例
- MS Access Max()、Min()用法及代码示例
- MS Access Fix()、Format()用法及代码示例
- MS Access Second()、Time()用法及代码示例
- MS Access MonthName()、Now()用法及代码示例
- MS Access Month()、Minute()用法及代码示例
- MS Access Day()、Hour()用法及代码示例
- MS Access Date()、DateAdd()用法及代码示例
- MS Access Abs()、Avg()用法及代码示例
- MS Access IsNumeric()、IsNull()用法及代码示例
注:本文由纯净天空筛选整理自cse1604310056大神的英文原创作品 StrConv() and StrReverse() Function in MS Access。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。