búsqueda de Google a través de AppleScript

2

Me gustaría realizar una búsqueda en Google con un AppleScript. El código se ve así:

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

El problema es, ¿cómo puedo cambiar los espacios a + ?

    
pregunta user121028 14.06.2015 - 15:28

1 respuesta

3

Aquí hay una subrutina para reemplazar caracteres:

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

Fuente: enlace

Entre esas dos líneas de AppleScript, inserte lo siguiente:

set search to replace_chars(search," ","+")
    
respondido por el grg 14.06.2015 - 15:36

Lea otras preguntas en las etiquetas