About 99 results
Open links in new tab
  1. arcgis desktop - Extracting substring from field in ArcMap using Python ...

    Jan 31, 2019 · Extracting substring from field in ArcMap using Python Parser of Field Calculator? Ask Question Asked 7 years ago Modified 7 years ago

  2. How to substring a number out of a string field using Python field ...

    Nov 10, 2020 · Using ArcGIS Desktop 10.7 I want to substring numbers as text out of a string field into a new string field with field calculator so that I can use them for layer symbology. The field contains high...

  3. arcpy - Python method for finding a substring within a string ...

    8 The reason why you're getting 'Global IBA' for every row is that Python's string.find () method returns an integer representing the substring's position within the string, not a boolean. When it can't find the …

  4. Reclassifying field using Python wildcard string search?

    Mar 21, 2019 · However, in Python, you do not need to do so. When testing for a string in another string in python, it tests for the presence of the provided string, exactly as provided, anywhere in the other …

  5. Python Question - how do I extract a part of a string

    The code below searches for the first occurence of the ".dwg" string and assigns a new substring (containing characters up to and including that occurence). text = "Denver.dwg Group …

  6. Splitting string using ArcGIS Pro field calculator

    Jun 8, 2021 · Splitting string using ArcGIS Pro field calculator Ask Question Asked 4 years, 8 months ago Modified 4 years, 8 months ago

  7. Using String Functions (LEFT, RIGHT, MID) in Select By Attributes ...

    The main reason it took so long to switch has to do with how Select by Attributes deals with string functions. For example, I used to be able to easily select all records where the first character of a …

  8. arcgis desktop - extract substring after first number - Geographic ...

    How using python or vb script would I extract a string only after the first digit into a new field titled Name_Num? Basically, the Name_Num field would have to appear like this: 1 166 196G 90-8 114-17 …

  9. Extracting part of string from field in QGIS Field Calculator?

    Sep 5, 2018 · regexp_substr( "Text", '/(\\d*)\_' ) based on this working example: Obtaining specific part of string from field in QGIS attribute table? However, the expression does not give the desired result …

  10. fields attributes - Filtering with setSubsetString using PyQGIS ...

    May 15, 2021 · Change to Then to add the layer A general tip to avoid issues with syntax in is iface.activeLayer().subsetString() setSubsetString You will never do the mistake again and useful for …