Jump to content

Common


 Share

Recommended Posts

This works, but the leading and trailing whitespace is stripped off the $result

Global $StringA = "Hello world I love you"
Global $StringB = "Bye world I love ha"
Global $result = ""
$arr = StringSplit($StringA, " ")
For $i = 1 To Ubound($arr) - 1
    If StringInStr($StringB, $arr[$i]) Then
        $result &= $arr[$i] & " "
    EndIf
Next
$result = StringStripWS($result, 3)
MsgBox(0, "$result", $result)

Das Häschen benutzt Radar

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...