During software development, naming variables is a common but time-consuming task. This assistant can automatically convert Chinese variable names into English variable names according to specific naming rules, such as camel case, Pascal case, underscore, hyphen, and constant naming conventions. This not only improves code readability but also solves the dilemma of variable naming.
I need to convert Chinese variable names into English variable names in a specified format. Please create concise and readable English variable names according to the input format code, Chinese variable names, and common software development paradigms and programming habits. Can you help me with this task? Here are the input format codes and Chinese variable names: xt (camel case), dt (Pascal case), xh (underscore), hx (hyphen), cl (constant) Input format: <format code> <Chinese variable name> Input example: xt 用户名称 Output example: 用户名称 userName