Jump to content

anibalgallego

Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by anibalgallego

  1. Excelent Thank you!!!
  2. Hi Im trying to find "CFU-1" in this text: "CLIP-1 CLIR-1 SOCFU-1" I have this: $string = ClipGet() If StringInStr($string, "CFU-1") Then ;somecode Endif It finds "SOCFU-1" as "CFU-1" but I need to get 'True' only when exactly "CFU-1" is in clipboard. Any help? Thanks
  3. Works great!! Ive changed $in = "text text tex text 123x 2x34 345@CRLF@" & _ "text text tex text 123 23x4 3x45@CRLF@" & _ "text text tex text 123 2x34 345" for $in = ClipGet() And its perfect THNKS!!
  4. I come from here: https://www.autoitscript.com/forum/topic/36064-string-delete-after-character/ Im trying to copy some multiline text like this from clipboard: text text tex text 123x 2x34 345 text text tex text 123 23x4 3x45 text text tex text 123 2x34 345 So I need to remove any character after "spaces" in every line and putit into clipboard with this format: text text tex text text text tex text text text tex text Im using StringLeft and I it's alright for one line. Is possible to make it multiline? $String = ClipGet() $OutPut = StringLeft($String, StringInStr($String, ' ') + 0) ClipPut ($OutPut) Thank you!
×
×
  • Create New...