Hello, i had new issue
i had a text:
"
_ 21/03/2019 FRINFOM INFORMATIQUE CFA
Conformité
Analyse
DO LIGNE RPA
REJET RPA VOIR TRACKING
A _
"
i want to verify that there is a text after “DO LIGNE RPA”
Hello, i had new issue
i had a text:
"
_ 21/03/2019 FRINFOM INFORMATIQUE CFA
Conformité
Analyse
DO LIGNE RPA
REJET RPA VOIR TRACKING
A _
"
i want to verify that there is a text after “DO LIGNE RPA”
Hi @abdel,
Two ways to do that
is null or String.empty…
Store the entire text in a string type variable removing all the spaces and split it with the text as
newText = str.split("DO LIGNE RPA").Last
Check whether newText is null or not