摘要
将基于表名称和工作空间路径返回工作空间的有效表名称。 下划线“_”将替换在表名称中发现的任何无效字符,并遵循工作空间的名称限制。 表名限制取决于所使用的特定 RDBMS。
语法
ValidateTableName (name, {workspace})
参数 | 说明 | 数据类型 |
name | The table name to be validated. | String |
workspace | The optional workspace against which to validate the table name. If the workspace is not specified, the table name is validated using the current workspace environment. If the workspace environment has not been set, the table name is validated based on a folder workspace. | String |
数据类型 | 说明 |
String | 工作空间的有效表名,与工作空间的名称限制相关。 |
代码示例
返回工作空间的有效表名。
import os
import arcpy
# Get the input and output workspaces.
arcpy.env.workspace = arcpy.GetParameterAsText(0)
out_workspace = arcpy.GetParameterAsText(1)
# Get a list of input feature classes to be copied and copy
# to new output location.
for fc in arcpy.ListFeatureClasses():
out_fc = arcpy.ValidateTableName(fc, out_workspace)
arcpy.CopyFeatures_management(
fc, os.path.join(out_workspace, out_fc))