2
I have an application that reads a string and needs to detect parameters contained in the string. The parameter has the following pattern <<<.texto>>>
(<
and >
are part of the parameter).
I was able to make an expression to capture the correct parameters. But it is also necessary to identify incorrect parameters (errors caused by user typing). Ex.: <texto>>>
, <<Texto>>>
, Texto>>>>
and etc.
Expression for the correct parameters: (\\<{3}(\\w+)\\>{3})+
Someone can help me?
Wouldn’t it just be making one
if !correto
?– Math
Yes, it can help in the assembly of the IF ?
– Raphael Coelho
See if Yure’s answer, I’d do something like that
– Math
Okay, thanks. I haven’t seen.
– Raphael Coelho