ParseFieldName (arcpy)

摘要

将全限定字段名解析为依赖工作空间的各个组成部分(数据库名称、所有者名称、表名和字段名)。ParseFieldName 将返回一个包含已解析字段名的字符串,其中的数据库名称、所有者名称、表名和字段名以逗号分隔。此工作空间必须是个人地理数据库、文件地理数据库或 ArcSDE 地理数据库。

语法

ParseFieldName (name, {workspace})
参数说明数据类型
name

The field name to be parsed.

String
workspace

Specifies the workspace for fully qualifying the field name. The workspace must be a personal, file, or ArcSDE geodatabase.

String
返回值
数据类型说明
String

返回已解析为由逗号分隔各个组成部分(数据库名称、所有者名称、表名、字段名)的字段名。

代码实例

ParseFieldName 示例

将字段名解析为各个组成部分。

import arcpy

field_name = arcpy.GetParameterAsText(0)
workspace = arcpy.GetParameterAsText(1)

# Parse the field name into database, owner, table and field
fullname = arcpy.ParseFieldName(field_name, workspace)
database, owner, table, field = fullname.split(", ")

相关主题

5/10/2014