Skip to main content
Solved

Substring or extrac last characters


Forum|alt.badge.img+3

Hi, 
I have a string. The last characters of the string are numbers. I want to substring or extract them. These are some examples of input strings: 'xdfg8941332', 'dder899945566445', 'cfgnnff89'. I have used 'find' with the following regex: \d+, but it has not been successful.

Best answer by Zaid Chougle

Zaid Chougle wrote:

Hi @luis.espeleta ,

I got the result with below logic : 

The key thing is I passed the RegEx in a variable and then send it to replace as it contains $ and AA checks for variable declaration.

The code works in fashion :

  • List contains all the string where last numbers are to be extracted.
  • Initially I replaced the last digits from the variable using RegEx : \d+$
  • After that from the original string I removed the replaced text and got the desired Output.

Let me know if any query comes.

Sample String has the input string and Regex has : \d+$ and is stored in Test1

Sample String has the input string, Test1 has the string other than last digits and the result is stored in OutPut

 

Example : Using String Replace 

First Screenshot : 

Input :

  • SampleString : 12xd23fg8941332
  • Regex = \d+$

Output : 

  • Test1 = 12xd23fg

Second Screenshot

  • SampleString : 12xd23fg8941332
  • Test1 = 12xd23fg

Output : 

  • OutPut = 8941332

 

View original
Did this topic help answer your question?

5 replies

Tamil Arasu10
Most Valuable Pathfinder
Forum|alt.badge.img+16
  • Most Valuable Pathfinder
  • 3276 replies
  • February 8, 2024

Hi @luis.espeleta ,

the regular expression r'\d+$' is used to match one or more digits (\d+) at the end of the string ($)

 

 


Forum|alt.badge.img+3
  • Author
  • Cadet | Tier 2
  • 2 replies
  • February 8, 2024

Thank you, I tried it and got this:
(str_Factura: XDGC992679)
Why does it show 0?

 


Zaid Chougle
Navigator | Tier 3
Forum|alt.badge.img+15
  • Navigator | Tier 3
  • 217 replies
  • February 9, 2024
luis.espeleta wrote:

Thank you, I tried it and got this:
(str_Factura: XDGC992679)
Why does it show 0?

 

It is because the specified substring is not found. In your case you should use extract / substring. I believe you are using Find.

 

Zaid Chougle
Navigator | Tier 3
Forum|alt.badge.img+15
  • Navigator | Tier 3
  • 217 replies
  • February 9, 2024

Hi @luis.espeleta ,

I got the result with below logic : 

The key thing is I passed the RegEx in a variable and then send it to replace as it contains $ and AA checks for variable declaration.

The code works in fashion :

  • List contains all the string where last numbers are to be extracted.
  • Initially I replaced the last digits from the variable using RegEx : \d+$
  • After that from the original string I removed the replaced text and got the desired Output.

Let me know if any query comes.


Zaid Chougle
Navigator | Tier 3
Forum|alt.badge.img+15
  • Navigator | Tier 3
  • 217 replies
  • Answer
  • February 9, 2024
Zaid Chougle wrote:

Hi @luis.espeleta ,

I got the result with below logic : 

The key thing is I passed the RegEx in a variable and then send it to replace as it contains $ and AA checks for variable declaration.

The code works in fashion :

  • List contains all the string where last numbers are to be extracted.
  • Initially I replaced the last digits from the variable using RegEx : \d+$
  • After that from the original string I removed the replaced text and got the desired Output.

Let me know if any query comes.

Sample String has the input string and Regex has : \d+$ and is stored in Test1

Sample String has the input string, Test1 has the string other than last digits and the result is stored in OutPut

 

Example : Using String Replace 

First Screenshot : 

Input :

  • SampleString : 12xd23fg8941332
  • Regex = \d+$

Output : 

  • Test1 = 12xd23fg

Second Screenshot

  • SampleString : 12xd23fg8941332
  • Test1 = 12xd23fg

Output : 

  • OutPut = 8941332

 


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings