c 數字ID與可見字串碼互轉的一種實現

2021-08-20 13:12:51 字數 648 閱讀 9417

適用場景:有時使用者id等之類的字段用的是int型別,但在有些時候不想讓這個id暴露,於是可以考慮把這個id轉換成乙個字串,而且要可根據這個字串得到相應的id值

實現如下**:

using system;

using system.data;

using system.linq;

using system.security.cryptography;

using system.text;

namespace my.common

; encryptor = cryp.createencryptor();

decryptor = cryp.createdecryptor();

#endregion}}

/// /// 獲取使用者code

///

///

public static string getusercodev2(int userid)

/// /// 獲取使用者id

///

///

public static int getuseridv2(string code)

catch}}

}

--- end ---

字串與數字的互轉

1 字串數字之間的轉換 1 string char string str ok char p str.c str 2 char string char p ok string str 3 char cstring char p ok cstring m str 或者 cstring m str m ...

Java 數字與字串互轉

1.string.valueof number 直接使用string類的靜態方法,只產生乙個物件 int a 9 string b string.valueof a 2.integer.tostring number int a 10 string b integer.tostring a floa...

c 數字與字串的相互轉換

首先推薦用用c 的stringstream。主要原因是操作簡單。數字轉字串,int float型別 同理 include include int main 字串轉數字,int float型別 同理 int main 上面方法的優點就是使用簡單方便,確定可能會相對別的方法來說慢一點,但是一般少量的資料...