Ricerca Google tramite AppleScript

2

Vorrei fare una ricerca su Google con un AppleScript. Il codice ha il seguente aspetto:

set search to text returned of (display dialog "Google Search" buttons {"OK"} default answer {""})
open location ("https://www.google.de/#q=" & search)

Il problema è: come posso cambiare gli spazi in + ?

    
posta user121028 14.06.2015 - 15:28
fonte

1 risposta

3

Ecco una subroutine per la sostituzione di caratteri:

on replace_chars(this_text, search_string, replacement_string)
  set AppleScript's text item delimiters to the search_string
  set the item_list to every text item of this_text
  set AppleScript's text item delimiters to the replacement_string
  set this_text to the item_list as string
  set AppleScript's text item delimiters to ""
  return this_text
end replace_chars

Fonte: link

Tra queste due linee di AppleScript, inserisci quanto segue:

set search to replace_chars(search," ","+")
    
risposta data 14.06.2015 - 15:36
fonte

Leggi altre domande sui tag