Compute
Elastic Cloud Server
Huawei Cloud Flexus
Bare Metal Server
Auto Scaling
Image Management Service
Dedicated Host
FunctionGraph
Cloud Phone Host
Huawei Cloud EulerOS
Networking
Virtual Private Cloud
Elastic IP
Elastic Load Balance
NAT Gateway
Direct Connect
Virtual Private Network
VPC Endpoint
Cloud Connect
Enterprise Router
Enterprise Switch
Global Accelerator
Management & Governance
Cloud Eye
Identity and Access Management
Cloud Trace Service
Resource Formation Service
Tag Management Service
Log Tank Service
Config
OneAccess
Resource Access Manager
Simple Message Notification
Application Performance Management
Application Operations Management
Organizations
Optimization Advisor
IAM Identity Center
Cloud Operations Center
Resource Governance Center
Migration
Server Migration Service
Object Storage Migration Service
Cloud Data Migration
Migration Center
Cloud Ecosystem
KooGallery
Partner Center
User Support
My Account
Billing Center
Cost Center
Resource Center
Enterprise Management
Service Tickets
HUAWEI CLOUD (International) FAQs
ICP Filing
Support Plans
My Credentials
Customer Operation Capabilities
Partner Support Plans
Professional Services
Analytics
MapReduce Service
Data Lake Insight
CloudTable Service
Cloud Search Service
Data Lake Visualization
Data Ingestion Service
GaussDB(DWS)
DataArts Studio
Data Lake Factory
DataArts Lake Formation
IoT
IoT Device Access
Others
Product Pricing Details
System Permissions
Console Quick Start
Common FAQs
Instructions for Associating with a HUAWEI CLOUD Partner
Message Center
Security & Compliance
Security Technologies and Applications
Web Application Firewall
Host Security Service
Cloud Firewall
SecMaster
Anti-DDoS Service
Data Encryption Workshop
Database Security Service
Cloud Bastion Host
Data Security Center
Cloud Certificate Manager
Edge Security
Situation Awareness
Managed Threat Detection
Blockchain
Blockchain Service
Web3 Node Engine Service
Media Services
Media Processing Center
Video On Demand
Live
SparkRTC
MetaStudio
Storage
Object Storage Service
Elastic Volume Service
Cloud Backup and Recovery
Storage Disaster Recovery Service
Scalable File Service Turbo
Scalable File Service
Volume Backup Service
Cloud Server Backup Service
Data Express Service
Dedicated Distributed Storage Service
Containers
Cloud Container Engine
SoftWare Repository for Container
Application Service Mesh
Ubiquitous Cloud Native Service
Cloud Container Instance
Databases
Relational Database Service
Document Database Service
Data Admin Service
Data Replication Service
GeminiDB
GaussDB
Distributed Database Middleware
Database and Application Migration UGO
TaurusDB
Middleware
Distributed Cache Service
API Gateway
Distributed Message Service for Kafka
Distributed Message Service for RabbitMQ
Distributed Message Service for RocketMQ
Cloud Service Engine
Multi-Site High Availability Service
EventGrid
Dedicated Cloud
Dedicated Computing Cluster
Business Applications
Workspace
ROMA Connect
Message & SMS
Domain Name Service
Edge Data Center Management
Meeting
AI
Face Recognition Service
Graph Engine Service
Content Moderation
Image Recognition
Optical Character Recognition
ModelArts
ImageSearch
Conversational Bot Service
Speech Interaction Service
Huawei HiLens
Video Intelligent Analysis Service
Developer Tools
SDK Developer Guide
API Request Signing Guide
Terraform
Koo Command Line Interface
Content Delivery & Edge Computing
Content Delivery Network
Intelligent EdgeFabric
CloudPond
Intelligent EdgeCloud
Solutions
SAP Cloud
High Performance Computing
Developer Services
ServiceStage
CodeArts
CodeArts PerfTest
CodeArts Req
CodeArts Pipeline
CodeArts Build
CodeArts Deploy
CodeArts Artifact
CodeArts TestPlan
CodeArts Check
CodeArts Repo
Cloud Application Engine
MacroVerse aPaaS
KooMessage
KooPhone
KooDrive

Does CDM Support Field Conversion?

Updated on 2022-08-17 GMT+08:00

Yes. CDM supports the following field converters:

You can create a field converter on the Map Field page when creating a table/file migration job.
Figure 1 Creating a field converter

Anonymization

This converter is used to hide key information about the character string. For example, if you want to convert 12345678910 to 123****8910, configure the parameters as follows:
  • Set Reserve Start Length to 3.
  • Set Reserve End Length to 4.
  • Set Replace Character to *.
Figure 2 Anonymization

Trim

This converter is used to automatically delete the spaces before and after a string. No parameters need to be configured.

Reverse String

This converter is used to automatically reverse a string. For example, reverse ABC into CBA. No parameters need to be configured.

Replace String

This converter is used to replace a character string. You need to configure the object to be replaced and the new value.

Expression Conversion

This converter uses the JSP expression language (EL) to convert the current field or a row of data. The JSP EL is used to create arithmetic and logical expressions. Within a JSP EL expression, you can use integers, floating point numbers, strings, the built-in constants true and false for boolean values, and null.

The expression supports the following environment variables:
  • value: indicates the current field value.
  • row: indicates the current row, which is an array type.
The expression supports the following tool classes:
  • StringUtils: string processing tool class. For details, see org.apache.commons.lang.StringUtils of the Java SDK code.
  • DateUtils: date tool class
  • CommonUtils: common tool class
  • NumberUtils: string-to-value conversion class
  • HttpsUtils: network file read class

Application examples:

  1. If the field is of the string type, convert all character strings into lowercase letters, for example, convert aBC to abc.

    Expression: StringUtils.lowerCase(value)

  2. Convert all character strings of the current field to uppercase letters.

    Expression: StringUtils.upperCase(value)

  3. If the field value is a date string in yyyy-MM-dd format, extract the year from the field value, for example, extract 2017 from 2017-12-01.

    Expression: StringUtils.substringBefore(value,"-")

  4. If the field value is of the numeric type, convert the value to a new value which is two times greater than the original value:

    Expression: value*2

  5. Convert the field value true to Y and other field values to N.

    Expression: value=="true"?"Y":"N"

  6. If the field value is of the string type and is left empty, convert it to Default. Otherwise, the field value will not be converted.

    Expression: empty value? "Default":value

  7. Convert date format 2018/01/05 15:15:05 to 2018-01-05 15:15:05:

    Expression: DateUtils.format(DateUtils.parseDate(value,"yyyy/MM/dd HH:mm:ss"),"yyyy-MM-dd HH:mm:ss")

  8. Obtain a 36-bit universally unique identifier (UUID):

    Expression: CommonUtils.randomUUID()

  9. If the field is of the string type, capitalize the first letter, for example, convert cat to Cat.

    Expression: StringUtils.capitalize(value)

  10. If the field is of the string type, convert the first letter to a lowercase letter, for example, convert Cat to cat.

    Expression: StringUtils.uncapitalize(value)

  11. If the field is of the string type, use a space to fill in the character string to the specified length and center the character string. If the length of the character string is not shorter than the specified length, do not convert the character string. For example, convert ab to meet the specified length 4.

    Expression: StringUtils.center(value,4)

  12. Delete a newline (including \n, \r, and \r\n) at the end of a character string. For example, convert abc\r\n\r\n to abc\r\n.

    Expression: StringUtils.chomp(value)

  13. If the string contains the specified string, true is returned; otherwise, false is returned. For example, abc contains a so that true is returned.

    Expression: StringUtils.contains(value,"a")

  14. If the string contains any character of the specified string, true is returned; otherwise, false is returned. For example, zzabyycdxx contains either z or a so that true is returned.

    Expression: StringUtils.containsAny("value","za")

  15. If the string does not contain any one of the specified characters, true is returned. If any specified character is contained, false is returned. For example, abz contains one character of xyz so that false is returned.

    Expression: StringUtils.containsNone(value,"xyz")

  16. If the string contains only the specified characters, true is returned. If any other character is contained, false is returned. For example, abab contains only characters among abc so that true is returned.

    Expression: StringUtils.containsOnly(value,"abc")

  17. If the character string is empty or null, convert it to the specified character string. Otherwise, do not convert the character string. For example, convert the empty character string to null.

    Expression: StringUtils.defaultIfEmpty(value,null)

  18. If the string ends with the specified suffix (case sensitive), true is returned; otherwise, false is returned. For example, if the suffix of abcdef is not null, false is returned.

    Expression: StringUtils.endsWith(value,null)

  19. If the string is the same as the specified string (case sensitive), true is returned; otherwise, false is returned. For example, after strings abc and ABC are compared, false is returned.

    Expression: StringUtils.equals(value,"ABC")

  20. Obtain the first index of the specified character string in a character string. If no index is found, -1 is returned. For example, the first index of ab in aabaabaa is 1.

    Expression: StringUtils.indexOf(value,"ab")

  21. Obtain the last index of the specified character string in a character string. If no index is found, -1 is returned. For example, the last index of k in aFkyk is 4.

    Expression: StringUtils.lastIndexOf(value,"k")

  22. Obtain the first index of the specified character string from the position specified in the character string. If no index is found, -1 is returned. For example, the first index of b obtained after the index 3 of aabaabaa is 5.

    Expression: StringUtils.indexOf(value,"b",3)

  23. Obtain the first index of any specified character in a character string. If no index is found, -1 is returned. For example, the first index of z or a in zzabyycdxx. is 0.

    Expression: StringUtils.indexOfAny(value,"za")

  24. If the string contains any Unicode character, true is returned; otherwise, false is returned. For example, ab2c contains only non-Unicode characters so that false is returned.

    Expression: StringUtils.isAlpha(value)

  25. If the string contains only Unicode characters and digits, true is returned; otherwise, false is returned. For example, ab2c contains only Unicode characters and digits, so that true is returned.

    Expression: StringUtils.isAlphanumeric(value)

  26. If the string contains only Unicode characters, digits, and spaces, true is returned; otherwise, false is returned. For example, ab2c contains only Unicode characters and digits, so that true is returned.

    Expression: StringUtils.isAlphanumericSpace(value)

  27. If the string contains only Unicode characters and spaces, true is returned; otherwise, false is returned. For example, ab2c contains Unicode characters and digits so that false is returned.

    Expression: StringUtils.isAlphaSpace(value)

  28. If the string contains only printable ASCII characters, true is returned; otherwise, false is returned. For example, for !ab-c~, true is returned.

    Expression: StringUtils.isAsciiPrintable(value)

  29. If the string is empty or null, true is returned; otherwise, false is returned.

    Expression: StringUtils.isEmpty(value)

  30. If the string contains only Unicode digits, true is returned; otherwise, false is returned.

    Expression: StringUtils.isNumeric(value)

  31. Obtain the leftmost characters of the specified length. For example, obtain the leftmost two characters ab from abc.

    Expression: StringUtils.left(value,2)

  32. Obtain the rightmost characters of the specified length. For example, obtain the rightmost two characters bc from abc.

    Expression: StringUtils.right(value,2)

  33. Concatenate the specified character string to the left of the current character string and specify the length of the concatenated character string. If the length of the current character string is not shorter than the specified length, the character string will not be converted. For example, if yz is concatenated to the left of bat and the length must be 8 after concatenation, the character string is yzyzybat after conversion.

    Expression: StringUtils.leftPad(value,8,"yz")

  34. Concatenate the specified character string to the right of the current character string and specify the length of the concatenated character string. If the length of the current character string is not shorter than the specified length, the character string will not be converted. For example, if yz is concatenated to the right of bat and the length must be 8 after concatenation, the character string is batyzyzy after conversion.

    Expression: StringUtils.rightPad(value,8,"yz")

  35. If the field is of the string type, obtain the length of the current character string. If the character string is null, 0 is returned.

    Expression: StringUtils.length(value)

  36. If the field is of the string type, delete all the specified character strings from it. For example, delete ue from queued to obtain qd.

    Expression: StringUtils.remove(value,"ue")

  37. If the field is of the string type, remove the substring at the end of the field. If the specified substring is not at the end of the field, no conversion is performed. For example, remove .com at the end of www.domain.com.

    Expression: StringUtils.removeEnd(value,".com")

  38. If the field is of the string type, delete the substring at the beginning of the field. If the specified substring is not at the beginning of the field, no conversion is performed. For example, delete www. at the beginning of www.domain.com.

    Expression: StringUtils.removeStart(value,"www.")

  39. If the field is of the string type, replace all the specified character strings in the field. For example, replace a in aba with z to obtain zbz.

    Expression: StringUtils.replace(value,"a","z")

  40. If the field is of the string type, replace multiple characters in the character string at a time. For example, replace h in hello with j and o with y to obtain jelly.

    Expression: StringUtils.replaceChars(value,"ho","jy")

  41. If the string starts with the specified prefix (case sensitive), true is returned; otherwise, false is returned. For example, abcdef starts with abc, so that true is returned.

    Expression: StringUtils.startsWith(value,"abc")

  42. If the field is of the string type, delete all the specified characters from the field. For example, delete all x, y, and z from abcyx to obtain abc.

    Expression: StringUtils.strip(value,"xyz")

  43. If the field is of the string type, delete all the specified characters at the end of the field, for example, delete all spaces at the end of the field.

    Expression: StringUtils.stripEnd(value,null)

  44. If the field is of the string type, delete all the specified characters at the beginning of the field, for example, delete all spaces at the beginning of the field.

    Expression: StringUtils.stripStart(value,null)

  45. If the field is of the string type, obtain the substring after the specified position (excluding the character at the specified position) of the character string. If the specified position is a negative number, calculate the position in the descending order. For example, obtain the character string after the second character of abcde, that is, cde.

    Expression: StringUtils.substring(value,2)

  46. If the field is of the string type, obtain the substring within the specified range of the character string. If the specified range is a negative number, calculate the range in the descending order. For example, obtain the character string between the second and fifth characters of abcde, that is, cd.

    Expression: StringUtils.substring(value,2,5)

  47. If the field is of the string type, obtain the substring after the first specified character. For example, obtain the substring after the first b in abcba, that is, cba.

    Expression: StringUtils.substringAfter(value,"b")

  48. If the field is of the string type, obtain the substring after the last specified character. For example, obtain the substring after the last b in abcba, that is, a.

    Expression: StringUtils.substringAfterLast(value,"b")

  49. If the field is of the string type, obtain the substring before the first specified character. For example, obtain the substring before the first b in abcba, that is, a.

    Expression: StringUtils.substringBefore(value,"b")

  50. If the field is of the string type, obtain the substring before the last specified character. For example, obtain the substring before the last b in abcba, that is, abc.

    Expression: StringUtils.substringBeforeLast(value,"b")

  51. If the field is of the string type, obtain the substring nested within the specified string. If no substring is found, null is returned. For example, obtain the substring between tag in tagabctag, that is, abc.

    Expression: StringUtils.substringBetween(value,"tag")

  52. If the field is of the string type, delete the control characters (char≤32) at both ends of the character string, for example, delete the spaces at both ends of the character string.

    Expression: StringUtils.trim(value)

  53. Convert the character string to a value of the byte type. If the conversion fails, 0 is returned.

    Expression: NumberUtils.toByte(value)

  54. Convert the character string to a value of the byte type. If the conversion fails, the specified value, for example, 1, is returned.

    Expression: NumberUtils.toByte(value,1)

  55. Convert the character string to a value of the double type. If the conversion fails, 0.0d is returned.

    Expression: NumberUtils.toDouble(value)

  56. Convert the character string to a value of the double type. If the conversion fails, the specified value, for example, 1.1d, is returned.

    Expression: NumberUtils.toDouble(value,1.1d)

  57. Convert the character string to a value of the float type. If the conversion fails, 0.0f is returned.

    Expression: NumberUtils.toFloat(value)

  58. Convert the character string to a value of the float type. If the conversion fails, the specified value, for example, 1.1f, is returned.

    Expression: NumberUtils.toFloat(value,1.1f)

  59. Convert the character string to a value of the int type. If the conversion fails, 0 is returned.

    Expression: NumberUtils.toInt(value)

  60. Convert the character string to a value of the int type. If the conversion fails, the specified value, for example, 1, is returned.

    Expression: NumberUtils.toInt(value,1)

  61. Convert the character string to a value of the long type. If the conversion fails, 0 is returned.

    Expression: NumberUtils.toLong(value)

  62. Convert the character string to a value of the long type. If the conversion fails, the specified value, for example, 1L, is returned.

    Expression: NumberUtils.toLong(value,1L)

  63. Convert the character string to a value of the short type. If the conversion fails, 0 is returned.

    Expression: NumberUtils.toShort(value)

  64. Convert the character string to a value of the short type. If the conversion fails, the specified value, for example, 1, is returned.

    Expression: NumberUtils.toShort(value,1)

  65. Convert the IP string to a value of the long type, for example, convert 10.78.124.0 to 172915712.

    Expression: CommonUtils.ipToLong(value)

  66. Read an IP address and physical address mapping file from the network, and download the mapping file to the map collection. url indicates the address for storing the IP mapping file, for example, http://10.114.205.45:21203/sqoop/IpList.csv.

    Expression: HttpsUtils.downloadMap("url")

  67. Cache the IP address and physical address mappings and specify a key for retrieval, for example, ipList.

    Expression: CommonUtils.setCache("ipList",HttpsUtils.downloadMap("url"))

  68. Obtain the cached IP address and physical address mappings.

    Expression: CommonUtils.getCache("ipList")

  69. Check whether the IP address and physical address mappings are cached.

    Expression: CommonUtils.cacheExists("ipList")

  70. Based on the specified offset type (month/day/hour/minute/second) and offset (positive number indicates increase and negative number indicates decrease), convert the time in the specified format to a new time, for example, add 8 hours to 2019-05-21 12:00:00.

    Expression: DateUtils.getCurrentTimeByZone("yyyy-MM-dd HH:mm:ss",value, "hour", 8)

We use cookies to improve our site and your experience. By continuing to browse our site you accept our cookie policy. Find out more

Feedback

Feedback

Feedback

0/500

Selected Content

Submit selected content with the feedback