Cita de: binario010101 en 12 Noviembre 2013, 20:29 PMComo hacer para que el archivo encuentre la letra de la usb automáticamente?
Con una solicitud a -> WMI
Saludos
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúCita de: binario010101 en 12 Noviembre 2013, 20:29 PMComo hacer para que el archivo encuentre la letra de la usb automáticamente?
#Region " Match Dictionary Values "
' [ Match Dictionary Values ]
'
' // By Elektro H@cker
'
' Examples :
'
' MsgBox(Match_Dictionary_Values(New Dictionary(Of Integer, String) From {{1, "Hello World!"}},
' "hello", False, StringComparison.CurrentCultureIgnoreCase).First.Value)
Private Function Match_Dictionary_Values(Of K)(
ByVal Dictionary As Dictionary(Of K, String),
ByVal Value As String,
ByVal MatchWholeWord As Boolean,
ByVal IgnoreCase As StringComparison) As KeyValuePair(Of K, String)()
If MatchWholeWord Then
Return (From kp As KeyValuePair(Of K, String) In Dictionary
Where String.Compare(kp.Value, Value, IgnoreCase) = 0).ToArray
Else
Return (From kp As KeyValuePair(Of K, String) In Dictionary
Where kp.Value.IndexOf(Value, 0, IgnoreCase) > -1).ToArray
End If
End Function
#End Region
#Region " Match Dictionary Keys "
' [ Match Dictionary Keys ]
'
' // By Elektro H@cker
'
' Examples :
'
' MsgBox(Match_Dictionary_Keys(New Dictionary(Of String, Integer) From {{"Hello World!", 1}},
' "hello", False, StringComparison.CurrentCultureIgnoreCase).First.Key)
Private Function Match_Dictionary_Keys(Of V)(
ByVal Dictionary As Dictionary(Of String, V),
ByVal Key As String,
ByVal MatchWholeWord As Boolean,
ByVal IgnoreCase As StringComparison) As KeyValuePair(Of String, V)()
If MatchWholeWord Then
Return (From kp As KeyValuePair(Of String, V) In Dictionary
Where String.Compare(kp.Key, Key, IgnoreCase) = 0).ToArray
Else
Return (From kp As KeyValuePair(Of String, V) In Dictionary
Where kp.Key.IndexOf(Key, 0, IgnoreCase) > -1).ToArray
End If
End Function
#End Region
#Region " Find Dictionary Value "
' [ Find Dictionary Value ]
'
' // By Elektro H@cker
'
' Examples :
'
' MsgBox(Find_Dictionary_Value(
' New Dictionary(Of Integer, String) From {{1, "ABC"}},
' "abc", True, StringComparison.CurrentCultureIgnoreCase))
Private Function Find_Dictionary_Value(Of K)(
ByVal Dictionary As Dictionary(Of K, String),
ByVal Value As String,
ByVal MatchWholeWord As Boolean,
ByVal IgnoreCase As StringComparison) As Boolean
If MatchWholeWord Then
Return (From kp As KeyValuePair(Of K, String) In Dictionary
Where String.Compare(kp.Value, Value, IgnoreCase) = 0).Any
Else
Return (From kp As KeyValuePair(Of K, String) In Dictionary
Where kp.Value.IndexOf(Value, 0, IgnoreCase) > -1).Any
End If
End Function
#End Region
#Region " Find Dictionary Key "
' [ Find Dictionary Key ]
'
' // By Elektro H@cker
'
' Examples :
'
' MsgBox(Find_Dictionary_Key(
' New Dictionary(Of String, Integer) From {{"ABC", 1}},
' "abc", True, StringComparison.CurrentCultureIgnoreCase))
Private Function Find_Dictionary_Key(Of V)(
ByVal Dictionary As Dictionary(Of String, V),
ByVal Key As String,
ByVal MatchWholeWord As Boolean,
ByVal IgnoreCase As StringComparison) As Boolean
If MatchWholeWord Then
Return (From kp As KeyValuePair(Of String, V) In Dictionary
Where String.Compare(kp.Key, Key, IgnoreCase) = 0).Any
Else
Return (From kp As KeyValuePair(Of String, V) In Dictionary
Where kp.Key.IndexOf(Key, 0, IgnoreCase) > -1).Any
End If
End Function
#End Region
Cita de: monal en 12 Noviembre 2013, 05:38 AMPodrias mandarme el codigo que utilzaste?
CitarÚltima vez activo: 12 Septiembre 2010, 00:57
Cita de: Fran2013 en 12 Noviembre 2013, 03:19 AM@echo off
:pregunta
set /p %hola% = Bucle Infinito? :
if %hola%==SI goto pregunta
set /p hola
@Echo OFF
:pregunta
SET /p "hola=Bucle Infinito?:"
IF /I "%hola%" EQU "SI" (goto :pregunta)
Pause&Exit
Cita de: Fran2013 en 12 Noviembre 2013, 03:19 AMbatch.
me pareció un buen lenguaje de scripting
por las incontables maneras de interactuar con el propio sistema operativo.
Citar%t%0%%c
%t%%%c
...Yo no le veo relación alguna con los números.Cita de: santi810 en 9 Noviembre 2013, 16:30 PMQueria ayuda para que al ejecutar un comando quedara asi:
If Wscript.Arguments.Count <> 0 Then
WScript.StdOut.Write(Jugador(Wscript.Arguments(0)))
WScript.Quit(0)
Else
WScript.Quit(1)
End If
Function Jugador(str)
Set regEx = New RegExp
regEx.Pattern = "^\D+"
name = regEx.Execute(str).Item(0)
regEx.Pattern = "\[\D+\]$"
pos = Mid(regEx.Execute(str).Item(0), 2, 3)
cosa = "%t%%%c"
Jugador = (name & cosa & "%" & pos & "%")
End Function
sed.exe -e "s/Miércoles/Dimecres/" "File.txt" > "Output.txt"
sed.exe -e "s/Sábado/Disabte/" "File.txt" > "Output.txt"
iconv -f latin1 -t utf-8 "File.txt" | sed "s/Sábado/Disabte/" | iconv -f utf-8 -t latin1
Cita de: Almapa en 4 Noviembre 2013, 17:43 PMEso si, el texto no debe contener en este caso el caracter "-" para su buen funcionamiento, de lo contrario puedes cambiarlo a cualquier otro.
@Echo OFF
set "str=C l i c k o n t h e N e w P r o f i l e b u t t o n t o o p e n t h e P r o f i l e"
set "str=%str: ={^_^}%"
set "str=%str: =%"
set "str=%str:{^_^}= %"
Echo "%str%"
Pause&Exit
str = "C l i c k o n t h e N e w P r o f i l e b u t t o n t o o p e n t h e P r o f i l e"
arr = split(str," ")
for each item in arr
output = output & replace(item, " ", "") & " "
next
msgbox(output)
Cita de: Almapa en 10 Noviembre 2013, 19:17 PMDe esto ya había una sección abierta, has preguntado si sigue activa o si se tiene intención de seguir? La verdad es que yo también estoy interesado, pues es una buena forma de practicar.
Cita de: Fran2013El ultimo registro de temas como este es de junio del 2012 ...
Cita de: Fran2013 en 10 Noviembre 2013, 19:36 PMCreo este tema para que se propongan pequeños proyectos en python...