My Transaction queue variable name is I 22 332 11. and i need I_22_332_11 for my send outlook Mail message path.so,can you say which type i can do this?
Can you please elaborate?
Do you want to just replace " " with “_”?
Hi @rAE_rAS
Can you elaborate you query?
If you need to replace the 1 22 332 11 string into 1_22_332_11 try with the below expression
"I 22 332 11".Replace(" ","_")
Regards
Gokul
yes i need only this but its queue transaction number
Use txnNumber.ToString.Replace(" “,”_").
but its one type of variable
Ypou can try with the above expression in the previous post @rAE_rAS
thank you its working
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.