replace_string()
Si applica a: ✅Microsoft Fabric✅Azure Esplora dati✅ Azure Monitor✅Microsoft Sentinel
Sostituisce tutte le corrispondenze di stringa con una stringa specificata.
Alias deprecati: replace()
Per sostituire più stringhe, vedere replace_strings().
Sintassi
replace_string(
riscrittura della ricerca,
di testo,
)
Altre informazioni sulle convenzioni di sintassi.
Parametri
Nome | Digita | Obbligatorio | Descrizione |
---|---|---|---|
Testo | string |
✔️ | Stringa di origine. |
lookup | string |
✔️ | Stringa da sostituire. |
riscrivere | string |
✔️ | Stringa sostitutiva. |
Valori restituiti
Restituisce il testo dopo aver sostituito tutte le corrispondenze di ricerca con valutazioni di riscrittura. Le corrispondenze non si sovrappongono.
Esempio
range x from 1 to 5 step 1
| extend str=strcat('Number is ', tostring(x))
| extend replaced=replace_string(str, 'is', 'was')
Output
x | str | valore sostituito |
---|---|---|
1 | Number is 1.000000 | Numero 1,000000 |
2 | Number is 2.000000 | Numero 2,000000 |
3 | Number is 3.000000 | Numero 3.000000 |
4 | Number is 4.000000 | Numero 4,000000 |
5 | Number is 5.000000 | Numero 5,000000 |
Contenuto correlato
- Per sostituire più stringhe, vedere replace_strings().
- Per sostituire le stringhe basate sull'espressione regolare, vedere replace_regex().
- Per sostituire un set di caratteri, vedere translate().To replace a set of characters, see translate().