Character conversion of output value (regular expression)
Regular expressions can be used for character conversion of output values.
You can specify the character string (red frame) before conversion using a regular expression.
If you want to display only the front of the postal code
Please refer to the following for regular expressions.
Contents of inquiries so far
-
If you want to split the postal code: (999-0000 => 999 and 0000)
-
Regular expression: -…
First 3 digits of postal code -
Regular expression: …-
Last 4 digits of postal code
-
-
If you want to split the phone number: (000-1111-2222 => 000, 1111 and 2222)
Insert the country code and ”-” deletion process in advance.- Regular expression: …$
First 3 digits of phone number - Regular expressions: ^… and …$
Middle 4 digits of phone number - Regular expression: ^…
Last 4 digits of phone number
- Regular expression: …$