I'm having a bit of trouble here with this situation.
I want "NumeroCamp" only to have the numbers are showing in "Text".
Is there any function in field calculator that could help me with that?
Answer
You can use the following expression in the field calculator (tested on QGIS 2.18):
regexp_substr( "Text", ';(\\d*)\}' )
This will return all digits (as text) between the ;
and }
characters.
No comments:
Post a Comment