In questo articolo vedremo come poter separare una stringa di testo (testo e/o numeri) utilizzando ad esempio un carattere di punteggiatura come : - , - . - ecc.
Ecco come si presenta il file activity_main.xml
Queste righe di codice si occupano di dividere la stringa di testo quando viene trovato un carattere di punteggiatura
Ecco come si presenta il file MainActivity.kt
Ecco un video dimostrativo
Ecco come si presenta il file activity_main.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<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" | |
android:orientation="vertical" | |
android:layout_margin="5dp" | |
tools:context=".MainActivity"> | |
<TextView | |
android:id="@+id/tv_mytext" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:text="Ciao, questo è il testo che verrà separato" | |
android:textColor="#000000" | |
android:textSize="16sp" | |
app:layout_constraintBottom_toBottomOf="parent" | |
app:layout_constraintLeft_toLeftOf="parent" | |
app:layout_constraintRight_toRightOf="parent" | |
app:layout_constraintTop_toTopOf="parent" /> | |
<Button | |
android:id="@+id/button" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:text="Dividi" /> | |
<TextView | |
android:id="@+id/textView" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:textColor="#000000" | |
android:textSize="16sp" /> | |
<TextView | |
android:id="@+id/textView2" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:textColor="#000000" | |
android:textSize="16sp" /> | |
</LinearLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//definizione della stringa di testo che verrà suddiviso in due stringhe separate | |
val currentString = "Ciao, questo testo" | |
//carattere di divisione del testo tramite ',' | |
val separated = currentString.split(",").toTypedArray() | |
separated[0] //questo contiene la prima parte di testo | |
separated[1] //questo contiene la seconda parte di testo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.dm.tutorialsplitstring | |
import androidx.appcompat.app.AppCompatActivity | |
import android.os.Bundle | |
import android.widget.Button | |
import android.widget.TextView | |
import kotlinx.android.synthetic.main.activity_main.* | |
class MainActivity : AppCompatActivity() { | |
private var bnSplit: Button? = null | |
private var myText: TextView? = null | |
override fun onCreate(savedInstanceState: Bundle?) { | |
super.onCreate(savedInstanceState) | |
setContentView(R.layout.activity_main) | |
bnSplit = findViewById(R.id.button) | |
myText = findViewById(R.id.tv_mytext) | |
bnSplit!!.setOnClickListener { | |
//recupero del testo che verrà suddiviso in due stringhe | |
val currentString = myText!!.text.toString() | |
//carattere di divisione del testo tramite ',' | |
val separated = currentString.split(",").toTypedArray() | |
separated[0] //questo contiene la prima parte di testo | |
separated[1] //questo contiene la seconda parte di testo | |
//scrittura del risultato in due TextView | |
textView.text = separated[0] | |
textView2.text = separated[1] | |
} | |
} | |
} |
Ecco un video dimostrativo
Download Project | ![]() |
Download file APK | ![]() |
Commenti
Posta un commento