Toggle navigation
Log in
Sign Up
Log in
Sign Up
Appium
C
C#
C++
Docker
Go
Informatica
Java
JavaScript
Kafka
Numpy
Oracle
Pandas
PHP
Py Spark
Python
R
React Native
Scipy
SFTP
Tableau
Teradata
TGMC
UNIX
Introducing
Radical.sh
Forget Code launches a powerful code generator for building API's
Forget_Code.Models.CategoryViewModel
Add a new snippet
Conversion Functions
1
Date Functions
8
Encryption
1
Math Functions
2
Operators
1
String Functions
9
Choose Category
REG_MATCH - String ends with check in Informatica
Forget Code
Informatica
REG_MATCH - String ends with check
Use the following pattern to check if string starts with specific pattern
REG_MATCH(company,'.*Y')
.* means any character, repeated for any number of times.
Company
Result
BentleY
TRUE
beach valley
FALSE
HP
FALSE
Adobe
FALSE
Pay a little attention to second result, regular expressions are case specific by default to over come that you can use the following pattern which will match beach valley too.
REG_MATCH(company,'.*(y|Y)')
or
REG_MATCH(company,'.*(y|Y)')
Visualize the above example
Tags for REG_MATCH - String ends with check in Informatica
regular expression for ends with
reg match ends with check
how to match a pattern using reg_match in informatica
how to join using pattern match in informatica
HOW TO GIVE PATTERN MATCHING IN INFORMATICA
how to get the middle string in informatica
how to find a pattern in middle of a string in informatica\
HOW TO CHECK PATTERN IN INFORMATICA
how to check date pattern in informatica
Contribute to Forget Code, help others.
Add snippet