We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Nekonya
bool IsMail()
判断字符串是否位邮箱地址。
用例:
bool isMail = "yomunsam@nekonya.io".IsMail(); string mail = "yomunsam@nekonya.io"; mail.IsMail();
string Reverse()
反转字符串
string str1 = "abc123"; string str2 = str1.Reverse(); //str2 is "321cba"
string EncodeBase64()
将字符串进行Base64编码
string str1 = "abc123"; string base64 = str1.EncodeBase64(); //base64 is "YWJjMTIz"
string DecodeBase64()
Base64文本解码到字符串
string base64 = "YWJjMTIz"; string text = str1.DecodeBase64(); //text is "abc123456"