1
lu
2024-10-22 56d8fbcc986d26ec9592085ed5f222a9ef701c54
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
using DevExpress.XtraEditors;
using Newtonsoft.Json.Serialization;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Dynamic;
 
namespace Gs.DevApp.TestForm
{
    public partial class XtraForm1 : DevExpress.XtraEditors.XtraForm
    {
        public XtraForm1()
        {
            InitializeComponent();
            textBox1.Text = "THIS_IS_AN_EXAMPLE";
        }
 
        private void button1_Click(object sender, EventArgs e)
        {
            string input = textBox1.Text;
            label1.Text = ToCamelCase(input);
 
            lbMsg2.Text =Gs.DevApp.ToolBox.UtilityHelper.ToCamelCase(input);
            
        }
        public static string ToCamelCase(string strItem)
        {
            bool hasLowercase = Regex.IsMatch(strItem, @"[a-z]");
            if (hasLowercase)
            {
                char[] chars = strItem.ToCharArray();
                chars[0] = char.ToLower(chars[0]);
                return new string(chars);
            }
            string[] strItems = strItem.ToLower().Split('_');
            string strItemTarget = strItems[0];
            for (int j = 1; j < strItems.Length; j++)
            {
                string temp = strItems[j].ToString();
                string temp1 = temp[0].ToString().ToUpper();
                string temp2 = "";
                temp2 = temp1 + temp.Remove(0, 1);
                strItemTarget += temp2;
            }
            return strItemTarget;
        }
 
    }
}