Here is the string
a = "http://www.peoples.net/mcfnet/viewtopic.php?f=143&t=4898958&sid=2110d616dbad926"
Now, we need to split this string into two and need a single string.
expected output is:
b = "http://www.peoples.net/mcfnet/viewtopic.php?f=143&t=4898958&"
Try using the substring function
I think with the substring-before-match you can do what you want, or try take a look on the other substring’s function.Check this link.