Skip to content

Commit

Permalink
UPDATE
Browse files Browse the repository at this point in the history
  • Loading branch information
pigreco committed Oct 22, 2023
1 parent 4b39d31 commit 99ac08a
Show file tree
Hide file tree
Showing 7 changed files with 66 additions and 0 deletions.
Binary file added docs/blog/posts/gruppo_condizioni/img_01.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/blog/posts/gruppo_condizioni/img_02.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
59 changes: 59 additions & 0 deletions docs/blog/posts/gruppo_condizioni/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
---
social_image: img/card_social/hfc_blog.png
draft: true
date: 2023-10-09
authors:
- pigreco
categories:
- espressioni
- condizioni
tags:
- blog
- condizioni
- if
- CASE
- coalesce
- nullif
- regex_natch
- try
---

# Le condizioni in QGIS

## Introduzione

Il motore di espressioni di QGIS ha a disposizione anche funzioni per gestire controlli condizionali nelle espressioni, il relativo gruppo funzioni si chiama _**Condizioni**_ e troviamo: if, CASE, coalesce, nullif, try e regex_match.

!!! Abstract "Funzione"
**Questo gruppo contiene funzioni per gestire controlli condizionali nelle espressioni**

<!-- more -->


[![](./img_01.png)](./img_01.png)

I controlli condizionali sono importanti in qualsiasi linguagio di programmazione, permettono di pilotare l'esito di un processo o di una espressione.

In questi giorni avevo la necessità di individuare, in un attributo CUS (string) di una tabella, quali fossero convertibili in numeri e quali no, sotto un esempio:

| id | CUS |
| --: | --------- |
| 1 | 32120 |
| 2 | 12211 |
| 3 | 2131/3121 |
| 4 | 321/3211 |
| 5 | 32110 |

[![](./img_02.png)](./img_02.png)

è abbastanza ovvio che 2131/3121 non sia conveertibile in numero, mentre 32120 sì.

Per popolare un'altro attributo CUSN (numerico) solo per le righe che contengono numeri basterebbe utilizzare la seguente espressione:

```
try (to_int("CUS"),NULL)
```
queste restituira il valore numerico per le righe 1,2,e,5; mentre _NULL_ per le righe 3 e 4.



6 changes: 6 additions & 0 deletions docs/blog/posts/gruppo_condizioni/test.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
id,CUS
1,32120
2,12211
3,2131/3121
4,321/3211
5,32110
Binary file added docs/img/splashscreen/splash_3_34ltr.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/img/splashscreen/splash_3_34rc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/release/novita_334.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Novità rilevanti introdotte in QGIS 3.34

[![](../img/splashscreen/splash_3_34rc.png)](../img/splashscreen/splash_3_34rc.png)

## espressioni

Expand Down

0 comments on commit 99ac08a

Please sign in to comment.