Answers for "how to replace certain characters in string swift"

1

how to replace certain characters in string swift

let aString = "This is my string"
let newString = aString.replacingOccurrences(of: " ", with: "+", options: .literal, range: nil)
Posted by: Guest on May-30-2020
3

javascript delete first character in string

var oldStr ="Hello";
var newStr = oldStr.substring(1); //remove first character "ello"
Posted by: Guest on August-05-2019
1

replace character in swift

extension String {
	func withReplacedCharacters(_ oldChar: String, by newChar: String) -> String {
	    let newStr = self.replacingOccurrences(of: oldChar, with: newChar, options: .literal, range: nil)
	    return newStr
	}
}
Posted by: Guest on February-06-2020
12

get certain character from string java

String words = "Hi There"; //creating a string var named 'words'
char index = words.charAt(0); /* setting a variable 'index' to letter
'0' of variable 'words'. In this case, index = 'H'.*/
System.out.println(index); //print var 'index' which will print "H"
Posted by: Guest on April-02-2020

Code answers related to "how to replace certain characters in string swift"

Code answers related to "Swift"

Browse Popular Code Answers by Language