Posts by Lucas Vinícius • 43 points
5 posts
-
-1
votes1
answer88
viewsQ: REGEX - How do I search for expressions that DO NOT contain a specific part?
I’m working with PL/SQL. Through REGEX, how do I find all expressions that are different from: <cod_orgao_destino>9577</cod_orgao_destino> Thank you!…
-
0
votes3
answers83
viewsQ: How to capture only a specific part of a string?
Using regular expression, I would like to capture only the value within a tag: <txt_conarq_assunto></txt_conarq_assunto> Example: Entree: <txt_conarq_assunto>A…
regexasked Lucas Vinícius 43 -
1
votes1
answer540
viewsQ: How to select XML and return a specific column from an anonymous block?
I have an anonymous block in PL/SQL that returns to me an XML as the result of running a web service. How do I select this XML to only get a desired column? Anonymous block: DECLARE l_filename…
-
0
votes0
answers105
viewsQ: How do I scan a string and bring different parts of it?
Using REGEX it is possible to "concatenate" masks to bring different parts of the same string? How do I scan a string and bring different parts of it? I have a text field with the following…
-
3
votes2
answers754
viewsQ: Method that uses a random value as parameter to swap the characters of a string
I have this code that’s working perfectly, but I need random values to appear instead of the X. I want the returned result to be composed of random letters and the position of upper and lower case…