Domande taggate «string»

Una stringa è una sequenza finita di simboli, comunemente usata per il testo, sebbene a volte per dati arbitrari.


17
PHP, ottieni il nome del file senza estensione
Ho questo codice PHP: function ShowFileExtension($filepath) { preg_match('/[^?]*/', $filepath, $matches); $string = $matches[0]; $pattern = preg_split('/\./', $string, -1, PREG_SPLIT_OFFSET_CAPTURE); if(count($pattern) > 1) { $filenamepart = $pattern[count($pattern)-1][0]; preg_match('/[^?]*/', $filenamepart, $matches); return strtolower($matches[0]); } } Se ho un file chiamato my.zip, questa funzione ritorna .zip. Voglio fare il contrario, voglio che la …
205 php  file  string 

3
Divisione sull'ultimo delimitatore nella stringa Python?
Qual è il linguaggio Python raccomandato per dividere una stringa sull'ultima occorrenza del delimitatore nella stringa? esempio: # instead of regular split >> s = "a,b,c,d" >> s.split(",") >> ['a', 'b', 'c', 'd'] # ..split only on last occurrence of ',' in string: >>> s.mysplit(s, -1) >>> ['a,b,c', 'd'] mysplitaccetta …
205 python  string  list  parsing  split 

30
Trovare l'indice del carattere in Swift String
È tempo di ammettere la sconfitta ... In Objective-C, potrei usare qualcosa come: NSString* str = @"abcdefghi"; [str rangeOfString:@"c"].location; // 2 In Swift, vedo qualcosa di simile: var str = "abcdefghi" str.rangeOfString("c").startIndex ... ma questo mi dà solo un String.Index, che posso usare per abbonarmi nuovamente nella stringa originale, ma …
203 string  swift 


14
Come dividere una stringa separata da virgola?
Ho una stringa di lunghezza sconosciuta che assomiglia a questa "dog, cat, bear, elephant, ..., giraffe" Quale sarebbe il modo ottimale di dividere questa stringa tra le virgole in modo che ogni parola possa diventare un elemento di una matrice? Per esempio List<String> strings = new ArrayList<Strings>(); // Add the …
202 java  string  split 

12
Rimuovere l'estensione del file da una stringa del nome file
Se ho una stringa che dice "abc.txt", c'è un modo rapido per ottenere una sottostringa che sia giusta"abc" ? Non posso farlo fileName.IndexOf('.')perché il nome del file potrebbe essere "abc.123.txt"o qualcosa del genere e ovviamente voglio solo sbarazzarmi dell'estensione (cioè "abc.123").
201 c#  string  parsing 

11
Java: come inizializzare String []?
Errore % javac StringTest.java StringTest.java:4: variable errorSoon might not have been initialized errorSoon[0] = "Error, why?"; Codice public class StringTest { public static void main(String[] args) { String[] errorSoon; errorSoon[0] = "Error, why?"; } }





5
Come abbinare una stringa a letterali stringa in Rust?
Sto cercando di capire come abbinare un Stringin Rust. Inizialmente ho provato ad abbinare in questo modo, ma ho capito che Rust non può implicitamente lanciare da std::string::Stringa &str. fn main() { let stringthing = String::from("c"); match stringthing { "a" => println!("0"), "b" => println!("1"), "c" => println!("2"), } } …
200 string  match  rust 



Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.