如何在 android 中递增字母数字?

How to increment alphanumeric number in android?

我是 android 编码实践的新手

ABB20180001 假设这是我的第一个 ID,我希望使用共享首选项将其自动递增 1 并用作员工 ID。 如ABB20180002、ABB20180003、ABB20180004等

您可以使用特定的 radix 将数字解析为 long,递增,然后将其转换回字符串。

如果您使用所有字母,则可以使用 36 作为基数:

long number = Long.parseLong("ABB20180001", 36);

String incremented = Long.toString(number + 1, 36).toUpperCase();//"ABB20180002"

您的号码可能只是一个十六进制数。在这种情况下,您可以使用 16 作为基数而不是上面显示的 36

请注意,如果 ABB 只是一个前缀,那么上面的方法将不起作用(增加 20 将 return ABB2018000L)。

如果"ABB"只是一个static前缀,那么你可以使用

//if the prefix changes, a regex will be needed
String incremented = "ABB" + (Long.parseLong(string.replace("ABB", "")) + 1)

最后,如果 "ABB" 可以改变,你可以使用这样的正则表达式(下面的例子假设前缀的长度为 3,相应地改变):

String s = "ABB20180001";
String[] parts = s.split("(?<=[A-Z]{3})"); //split after a sequence of 3 letters
String res = parts[0] + (Long.parseLong(parts[1]) + 1);

您不能直接递增字母数字值。如果想这样做,你需要为它写几行代码

这里是activity_main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity"
    android:orientation="vertical">

    <TextView
        android:id="@+id/txt_autoincreament"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="click"
        android:onClick="Click"/>

</LinearLayout>

这里是MainActivity.java

public class MainActivity extends AppCompatActivity {
    TextView autoTextIncreament;
    String stringValue="ABB";
    long intValue=20180001;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        autoTextIncreament = findViewById(R.id.txt_autoincreament);
    }

    public void Click(View view){
        autoTextIncreament.setText(getValue());
    }

    private String getValue() {
        return stringValue+String.valueOf(intValue++);
    }
}

希望对您有所帮助。