2017-07-16 13 views
0

て右の文字列を取得します。私は、文字列の以下の仮定値を持つ正規表現

//start string: 
var text1 = 'Me & You'; 
var text2 = 'Me& You'; 
var text3 = 'Me &You'; 
var text4 = 'Me&You'; 
var text5 = 'Me  &You'; 
var text6 = 'Me&  You'; 
var text7 = 'Me  & You'; 
//Final string I want to get: 
text1: Me You 
text2: Me You 
text3: Me You 
text4: MeYou 
text5: Me  You 
text6: Me  You 
text7: Me  You 
//real output: 
text1: Me You 
text2: Me You 
text3: Me &You 
text4: MeYou 
text5: Me  //Here are many hidden spaces 
//and similar outputs 
//hypothetical RegExp 
var string = 'Me  & You'; 
let value = /\S*(&|#|%)\S*/;//for example 
let resssC = string.split(value)... 

は、どのように私は必要な出力を得ることができますか?それは正規表現の問題か他に何かありますか?私はあなただけでは、単純なたぶんのみ&

string.replace(/\&/g,""); 

答えて

1

:?

console.log(string.split("&").join("")) 
0

を交換する必要が思ったよう

関連する問題