sed用数字特殊字符替换字符串

时间:2019-01-19 15:41:16

标签: bash sed grep

我要替换

4328"  +  base64_encode\("\x86\x01\x02\x03\x04\x05\x06\x07\x25\x07\x2E\x01\x02\x03\x04\xBB\x01\x62\x1A\x01\x01

4321\x38\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F\x90\x91\x92\x93

尝试了很多选择,但我最后一次尝试却没有解决

sed -i 's/4328["]  +  base64_encode[(]"\x86\x01\x02\x03\x04\x05\x06\x07\x25\x07\x2E\x01\x02\x03\x04\xBB\x01\x62\x1A\x01\x01/"4321\x38\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F\x90\x91\x92\x93"/g' *.utt

1 个答案:

答案 0 :(得分:1)

请您尝试以下操作,仅对显示的示例进行测试。

List<IntersectionOfTwoSets.Point> a, b;
or
IntersectionOfTwoSets::Point a = new IntersectionOfTwoSets::Point[n];
IntersectionOfTwoSets::Point b = new IntersectionOfTwoSets::Point[n];

假设我们有以下Input_file。

sed -E 's/[0-9]+\".*\x[0-9]+/321\\x38\\x80\\x81\\x8\\x83\\x84\\x85\\x86\\x87\\x88\\x89\\x8A\\x8B\\x8C\\x8D\\x8E\\x8F\\x90\\x91\\x92\\x93/g'  Input_file

现在,运行代码后,我们将获得以下输出。

cat Input_file
singh is king bla bla 4328"  +  base64_encode\("\x86\x01\x02\x03\x04\x05\x06\x07\x25\x07\x2E\x01\x02\x03\x04\xBB\x01\x62\x1A\x01\x01